• In style.css, ol, ul, li { list-style: none; } is followed by restoring ul and ol, but not li. As a result, standard content lists may render without bullets depending on browser and editor output. Restoring list-style on content <li> elements resolves the issue. A restore in a child theme style.css works to restore bulleted lists. Not sure is something else in going on, and no testing has been done removing all plugins down to nothing but the theme.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hello @peorman

    Can you provide us the specific page URL of your website so that we can check it the link you have provided is not working.

    If you are looking for list style bullets then you can use the following code in additional CSS box in customizer:

    ul li {
    list-style: disc;
    }
    ol li {
    list-style: decimal;
    }

    Thanks

Viewing 1 replies (of 1 total)

You must be logged in to reply to this topic.