filibuster
Member
Posted 6 months ago #
I searched around but surprisingly couldn't find someone addressing this topic. Usually it was the opposite problem: (removing bullets) from a different widget.
Anyway here is my site: http://www.thecanadaguide.com/?page_id=82
The text of the text widget in the sidebar ("Quick Facts") has proper ul coding in it, but as you can see, the bullets do not appear on the actual page. What do I need to add?
Thanks!
the bullets are suppressed by:
#rightbar ul li {
margin: 0;
padding: 0;
line-height: 18px;
list-style-type: none;
}
to get them back, add for example something like this to the bottom of style.css:
#rightbar .textwidget ul li { list-style-type: disc; margin-left: 10px; }
filibuster
Member
Posted 6 months ago #
Awesome! Thanks a ton Alchymyth. Just wanted to note that I've found your posts in other threads to be incredibly useful as well!