Using the PageLines free theme downloaded from WordPress.org.
by default the style is set up for
list-style:none; for display of widgets in the sidebar. I want to have bullets in an unordered list in a text widget, and have tried everything but nothing is working.
first tried adding a class to the unordered list in the text widget, then added that class in the CSS, like this:
HTML
<ul class="blah">
<li>blah</li>
</ul>
CSS
ul.blah li {
list-style-type:circle;
}
i also tried adding the !important so it would override any other css
did not work. so I tried placing it in-line directly
<ul style="list-style-type:cirlc;">
<li>blah blah</li>
</ul>
didnt work
then I Control+F and found every instance of "list-style-type:none;" that existed in the stylesheet and changed it from 'none' to 'circle' and STILL nothing.
here is a link. any help appreciated. thank you