Bulletts

I'm trying to get my bullets not to be the normal "\", but I want it to start with "a". What code do I use to do this. I think I'm using CSS. I tried the code li {list-style-type:lower-alpha} and this didn't work. Please help.<!--content-->It was suppose to be a black bullet in quotes not whatever it put there.<!--content-->try putting it in ul or ol and see what happens.<!--content-->Are you using an ordered list?<br />
<ol style="list-style-type:lower-alpha;"><br />
<li>first letter</li><br />
</ol><!--content-->Yes I was. That code worked great!<!--content-->
 
Back
Top