• Hi, the plugin works beautifully!
    Just one request. May pages have very long titles and the list become a mess of underlined items.
    I would like to have the classical disc, or square, or whatever just prior each item, like classical html lists. More over how to modify font and font size?

    Thank you very much
    Orazio

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Dani Llewellyn

    (@diddledani)

    Hi,

    I believe you can reinstate the list indicators with the following CSS added via the theme “customizer” in the “Custom CSS” box:

    .div.letter-section > ul.az-columns {
        margin: initial;
    }
    .div.letter-section > ul.az-columns > li {
        display: initial;
        list-style: initial;
        padding: initial;
    }
    • This reply was modified 4 years, 1 month ago by Dani Llewellyn. Reason: correct the css - I used the wrong selectors
    • This reply was modified 4 years, 1 month ago by Dani Llewellyn. Reason: set display:initial on the list items to override display:block in plugin code
    • This reply was modified 4 years, 1 month ago by Dani Llewellyn. Reason: also reset padding on list items
    Thread Starter ragonesi

    (@ragonesi)

    Hi,
    unfortunately doesn’t works. Even flushing the cache from both server and WP installation, and regardless of theme used (mine is ASTRA), doesn’t works.

    Regards
    Orazio

    Plugin Author Dani Llewellyn

    (@diddledani)

    Oops, the leading . shouldn’t be there:

    div.letter-section > ul.az-columns {
        margin: initial;
    }
    div.letter-section > ul.az-columns > li {
        display: initial;
        list-style: initial;
        padding: initial;
    }
    Thread Starter ragonesi

    (@ragonesi)

    Hi,
    guess what? No way to fix it!
    Thank you very much, but I think you can stop your effort to solve the issue. Should be something more deep, something which is continuously by passed by main teme.
    Thank you in any case
    Orazio

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘List style type’ is closed to new replies.