Why isn't the following working? I want the ul
style to be mostly unbulleted (due to inherited code), but occasionally to be able to use it as a traditional bulleted list. So I've defined a special class for bulleted lists.
ul li {padding:0 0 0.5em 0; margin-left:0; list-style-type:none;}
ul.bulleted {padding:0 0 0 0; list-style-type: disc; color:red;}
The HTML:
<p>Intro text:</p>
<ul class="bulleted">
<li>blah</li>
<li>blah</li>
<li>blah</li>
</ul>
This shows the list with red text, as expected: but without any bullets!
Baffled :(