[Resolved] How to increase space between bullet points

Home Forums Support [Resolved] How to increase space between bullet points

Home Forums Support How to increase space between bullet points

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #186697
    Sarah

    Hi Tom, I’ve had a search through the forum and gone through the upgrade plugins but can’t see anything that will help me increase the space between bulleted and numbered items in my blog post (http://tinywebservices.com/how-to-set-up-facebook-live-for-pages/)

    I find them realllllly hard to read like that and if I insert a <br> it gets stripped.

    Is there some CSS code I can apply or am I missing a setting in Customizer somewhere?

    Thanks for your help,
    Sarah

    #186801
    Tom
    Lead Developer
    Lead Developer

    Hi Sarah,

    Try this CSS:

    .entry-content ul li,
    .entry-content ol li {
        margin-bottom: 10px;
    }

    Let me know πŸ™‚

    #186811
    Sarah

    Tom you are star! Thank you SO much – that has sorted it out perfectly πŸ˜€

    #186813
    Tom
    Lead Developer
    Lead Developer

    You’re very welcome πŸ™‚

    #411257
    Enrico

    Hi Tom, this css is not working in pages that use sections add on.

    How I have to use it with page made with sections?

    If I use it without entry-content it works but it add a margine also on the menus. So I can not use it this way.

    #411416
    Leo
    Staff
    Customer Support

    Can you link me to the page? Feel free to start a new topic so you have a private URL field to submit with.

    #411449
    Enrico

    Hi Leo,

    1) this code:

    .entry-content ul li,
    .entry-content ol li {
        margin-bottom: 10px;
    }

    should work with sections?

    2) or this code:

    ul li {
        margin-bottom: 10px;
    }

    should not add margin to menus?

    I have now set the code 2) in this site: digitaldem.it.
    Now it has WordPress 4.9 beta 4 but it was all the same with the official WordPress version 4.8.2

    #411544
    Leo
    Staff
    Customer Support

    Menu is a list so yes 2) will apply to menu as well.

    I’m not sure what you are trying to accomplish and the page you link isn’t using sections?

    #411575
    Enrico

    You are right, sorry, I linked the wrong site. The correct one is questsocial.it

    I need to have lists with more space between lines.

    In other sites, that don’t have sections, I use this:

    .entry-content ul li,
    .entry-content ol li {
        margin-bottom: 10px;
    }

    Now I have put this code in the site with sections but don’t work there.

    #411626
    Leo
    Staff
    Customer Support

    Try:

    .generate-sections-container ul li,
    .generate-sections-container ol li {
        margin-bottom: 10px;
    }
    #411748
    Enrico

    Thanks a lot Leo! This is the right CSS code for pages with sections.

    #411985
    Leo
    Staff
    Customer Support

    No problem!

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.