In order to display your lists with letters you'll need to add a style declaration to your ordered lists.
For example, on the lists that you want to have letters instead of numbers, it would look like this:
- Code: Select all
<ol style="list-style:lower-alpha;">
or
- Code: Select all
<ol style="list-style:upper-alpha;">
The former would give you lowercase letters and the latter would give you upper.
Hopefully that helps.