Tagged: ordered list
I need to create an alpha ordered list in the answer part of the Accordion element for an FAQ page.
I tried using <ol type="a">
which looks good in the Enfold text box but still comes out with numbers in the browser
Is there a way to do this?
Hey John,
Thank you for the inquiry.
Try to add a unique class name to the list:
ol class="alpha-list">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
Then add the following css to adjust the style type:
.alpha-list {
list-style-type: lower-alpha;
}
Best regards,
Ismael
Brilliant. Cheers Ismael