Or, can I have an ordered list with a nested list inside with alpha instead of numeric?
1.
2.
a.
b.
3.
Tried this, didn't work.
<ol>
<li></li>
<li></li>
<ol style="list-style-type:lower-alpha;">
<li></li>
<li></li>
</ol>
<li></li>
</ol>
the lower alpha list shows up as numbers instead.
is there a better way to do this?