• Hello,
    I am not able to make ordered list with lower alpha style
    How to solve this problem,
    fyi on my wordpress post editor it already have lower alpha style
    The problem is only when i view in the post page it all become number style

Viewing 4 replies - 1 through 4 (of 4 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello budi2000,

    Try below example :

    <ol style="list-style:lower-alpha;">
     <li>Coffee</li>
     <li>Tea</li>
     <li>Milk</li>
    </ol>

    Screen Shot

    Hope this will helps you.

    Thanks.

    Thread Starter budi2000

    (@budi2000)

    Hi AddWeb,
    I add it to the post editor (Text Tab)
    And then i click the Visual Tab in the post editor
    Yes, it have a,b,c
    But after i click Preview button it doesnt look like before, it just number (1,2,3)
    So weird…

    Please check the printscreen here:
    https://prnt.sc/j37sn9

    • This reply was modified 8 years, 1 month ago by budi2000. Reason: add printscreen url
    adrianosoarez

    (@adrianosoarez)

    Hello Budi2000,
    I was also having this difficulty and I decided this way:

    add it to the post editor (Text Tab) for example:

    <ol class="letters">
      <li>Coffee</li>
      <li>Tea</li>
      <li>Milk</li>
     </ol>

    and add custom css

    Appearance > Customize > Advanced options > Additional CSS

    just copy and paste the code and publish

    .entry ol.letters li {
    list-style-type: lower-alpha!important;
    }

    sorry for the language, i used google translate
    to answer you.

    I was having the same problem, but @adrianosoarez solution worked. Thank you.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Ordered list with letter (not number)’ is closed to new replies.