You are not logged in.
Another (hopefully easy) question: I'd like to style some bulleted lists with letters to denote the list items instead of the default numbering. Like this:
a. test1
b. test2
c. test3
Here's my code:
<ol type="a">
<li>test1</li>
<li>test2</li>
<li>test3</li>
</ol>
The page renders with numbers, though:
1. test1
2. test2
3. test3
Any way to override the default <ol> style, here?
Offline
You're looking for the CSS list-style-type property:
http://www.w3schools.com/cssref/pr_list-style-type.asp
The "lower-alpha" value should work.
Offline
Incredible - works great! Thanks much, Tim.
Offline