-
Bug
-
Resolution: Fixed
-
Minor
-
3.3.11
Follow up to: https://tracker.phpbb.com/browse/PHPBB3-17042
If you give a group a description and use the ordered list BBCode, the layout breaks when viewing the group page (memberlist.php?mode=group&g=3)
The following adjustment needs making to the recently implemented group description CSS
File: content.css
Find:
.group-description ul {
|
list-style-position: inside;
|
}
|
Change To:
.group-description ol, .group-description ul {
|
list-style-position: inside;
|
}
|