Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #496763

    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

    #497219

    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

    #497259

    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

    #502051

    Thank you very much both of you.

    Best regards,

    Peter

    #502220

    Hey,

    Glad we could help :-)

    Cheers!
    Rikard

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Ordered list with letters’ is closed to new replies.