Viewing 2 replies - 1 through 2 (of 2 total)
  • you have a couple of empty paragraphs at the bottom of your list

    <p>?</p>
    <p class="" contenteditable="false">?</p>

    each has a top and bottom margin. You will need to remove these paragraphs. Below is the css applying the margin

    p {
        margin: 1em 0;
    }

    not sure what you are using to generate your list, but if it is a plugin or your theme, it may be adding these empty paragraphs for some reason.

    The heading for your list

    <p class="" contenteditable="false" style="margin-bottom: 0px;">
    <span class="bold_text">Here's What You'll Discover:</span>

    is similar but would appear to add an inline style removing the bottom margin.

    Use firebug or similar to identify this sort of thing
    Google it

    Thread Starter workwithleads

    (@workwithleads)

    Thank you Marklcm. I’m using a plugin that helps me with formatting and you were right, it had added some extra margin. Adjusted that and it helped. Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Get rid of extra space at the bottom of the page’ is closed to new replies.