View Single Post
Old 03-02-2017, 06:12 PM   #20
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,360
Karma: 20212223
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
list-style-type:upper-latin or list-style-type:upper-alpha

found at W3schools: https://www.w3schools.com/csSref/pr_list-style-type.asp

edit:
Works great...make sure it's all lower case. Of course, you can put this in a class instead of an in-line style.

As in:
Code:
<ol style="list-style-type:upper-latin">
<li>asdsad</li>
<li>asdsad</li>
<li>asdsad</li>
<li>asdsad</li>
<li>asdsad</li>
</ol>

or

.upperlatin {list-style-type:upper-latin}

<ol class="upperlatin">
<li>asdsad</li>
<li>asdsad</li>
<li>asdsad</li>
<li>asdsad</li>
<li>asdsad</li>
</ol>

Last edited by Turtle91; 03-02-2017 at 07:29 PM.
Turtle91 is offline   Reply With Quote