• list bullet ellipsis not showing in https://cliento.000webhostapp.com/
    under “Synergies” heading in the post named “Did someone order M&A?”
    when you open the post, list bullets are shown properly but in excerpt it is not showing. how can i resolve it?

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

Viewing 1 replies (of 1 total)
  • Plugin Author WPKube

    (@wpkube)

    Hi @pranjal420

    The theme has this CSS code:

    ol, ul {
        list-style: none;
    }

    So it makes the lists have styling that’s not like a list.

    And on other pages they apply this:

    ul li {
        display: list-item;
    }
    .post-content li {
        margin-top: 0.5em;
        line-height: 170%;
    }

    Not sure why they did it like that.

    Add the following in WP admin > Appearance > Customize > Additional CSS:

    .post-excerpt ul li {
        display: list-item;
    }
    .post-excerpt ul {
        list-style: disc;
        margin-left: 1.5em;
    }
    .post-excerpt ul ul {
        list-style: circle;
    }
    .post-excerpt  li {
        margin-top: 0.5em;
        line-height: 170%;
    }
    • This reply was modified 3 years, 8 months ago by WPKube.
Viewing 1 replies (of 1 total)
  • The topic ‘list bullet ellipsis not showing’ is closed to new replies.