Hi, I have several lists where I would like for parts of the list to be listed with numbers and other parts to be listed with letters, so for instance:
1
2
a
b
3
4
How can I achieve that? (the theme seems to ignore if I add the standard html code type=”a”.
Hope you can help.
Peter
Hey pfk-kbh!
Try this out.
<ol style="list-style:lower-roman;">
<li>list item</li>
<li>list item</li>
<li>list item</li>
</ol>
See here for more info, https://css-tricks.com/almanac/properties/l/list-style/.
Cheers!
Elliott
Hey pfk-kbh!
Please insert the below css into your custom css section to apply letter ordering on your ordered lists:
ol {
list-style: lower-alpha;
}
Regards,
Dake
Thank you very much both of you.
Best regards,
Peter