Though this is a year old topic, I thought I would leave a note here how this helped me.
I wanted to make a list using letters instead of numbers or bullets - of the type:
a. Item 1
b. Item 2
c. Item 3
Not being that conversant with CSS, this post, along with TW's page
Styles and Classes in WikiText, and
w3schools.com -
CSS list-style Property - helped to make it easier.
While at
w3schools.com, I found there are many different styles available there for making lists as well using the
CSS list-style-type Property
This below is what I used:
@@list-style-type:lower-alpha;
* Item 1
* Item 2
* Item 3
@@
Thanks