When I create an unordered list in my form editor in an html text brick, the bullets won't show up: <ul> <li>item</li> <li>item</li> <li>item</li>> </ul> is there some way I could create an inline css in the brick to override whatever's causing the bullet to not show up?
For future reference, support contacted me and solved the problem: It is because of CSS styles. Please use class am-list for ul tag eg <ul class="am-list"> <li>item</li> <li>item</li> <li>item</li>> </ul>