center group BBCode

I've solved it this way:
CSS:
// template: tl_groups_bb_code_group.html
div[style="text-align: center"] .groupBbCode--wrapper {
  margin: 0 auto;
}
div[style="text-align: right"] .groupBbCode--wrapper {
  float: right;
}

And I have thought about something else so that the text is around the preview.
Unfortunately "Strike-through" had to abuse for it.
CSS:
s .groupBbCode--wrapper {
  float: left;
}
 
Last edited:
Back
Top