• Resolved ktlonergan

    (@ktlonergan)


    hi – I am trying to simply add spaces between bullet points on pages and posts using the CSS style sheet on our site here – I am not a WP person or a programmer but it seems to me it should be a fairly simple matter – I’ve found a couple of suggestions to add to the CSS and tried these and they did not work – any suggestions would be greatly appreciated – many thanks.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Can you link to a page or post with an example of these bullet points?

    Thread Starter ktlonergan

    (@ktlonergan)

    Hi Andrew – example page here: https://www.pmis-consulting.com/articles/

    many thanks

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Try adding this to the bottom of your Child Theme style.css file:

    .hentry li {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    (px represents pixels)

    Thread Starter ktlonergan

    (@ktlonergan)

    have done that – the following is what I have now and nothing has happened? maybe my use of syntax is wrong?

    }
    .custom-title-area{height:200px;}
    }
    @media all and (max-width: 960px){
    .ls-layer h1 span {
    left: 50% !important;
    width: 100% !important;
    }
    .hentry li {
    margin-top: 10px;
    margin-bottom: 10px;
    }
    }

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    It needs to be right at the bottom and below the last bracket (“}”).

    Thread Starter ktlonergan

    (@ktlonergan)

    worked! really much appreciated – I did not want to have to use a plugin for such a simple thing (when you know what to do ) many thanks ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘css formating’ is closed to new replies.