Sometimes you just want a different format for your ordered lists in WordPress, or even the unordered lists too. Discs instead of squares, upper-case roman numerals instead of numbers, lower-case letters instead of upper-case ones – you get the picture.

If you are familiar with a bit of coding you can easily define these things in your css:

For the actual list:
#content ul {list-style:disc;}
#content ol {list-style:lower-alpha;}

Or for the list items:
#content ul li {list-style:disc;}
#content ol li {list-style:lower-alpha;}

You can even nest them like this:
#content ul ol li {list-style:lower-alpha;}

Really quite simple!