There are issues when you use nested bullets in the editor. See screenshot below.

To fix the above issue, add this in css_additional or via Sitebuilder > Style > CSS Editor.
That should fix the issue as shown below which is not an image but an actual lists as I applied the fix here in this forum.
To fix the above issue, add this in css_additional or via Sitebuilder > Style > CSS Editor.
Code:
.restore ul, .restore ol {
margin: 1em 0;
padding: 0 40px;
}
.restore ul ul, .restore ul ol, .restore ol ul, .restore ol ol {
margin-top: 0;
}
.restore ul > li {
list-style-type: disc;
}
.restore ul ul > li {
list-style-type: circle;
}
.restore ul ul ul > li {
list-style-type: square;
}
- disc style bullet
- circle style bullet
- square style bullet
- circle style bullet




Comment