How do I make li tags in a ol use letters

Use the list-style-type CSS property on the <ol> tag.

[css]ol {
list-style-type: lower-alpha;
}[/css]

See here for the full list of options: http://www.w3schools.com/cssref/pr_list-style-type.asp

 

[custom-related-posts title=”You may Also Like:” none_text=”None found” order_by=”title” order=”ASC”]

Leave a Comment