Forums

blank space under posts (6 posts)

  1. spizz
    Member
    Posted 2 years ago #

    Something is causing about 225 pixels of blank space to appear under each post on my blog. I have heard that this may be caused by ad services creating space then not using it (I use both Google Ads and AdBrite). How can I either have it go away or fill it in with an ad?

    site: tracsposse.com

  2. esmi
    Theme Diva & Forum Moderator
    Posted 2 years ago #

    It's not unused ad space - it's CSS. Change style.css (line 440) from:

    .post {
    background:#F9F9F9 none repeat 0 0;
    margin:0 0 40px;
    padding:5px 10px;
    text-align:justify;
    }

    to

    .post {
    background:#F9F9F9 none repeat 0 0;
    margin:0;
    padding:5px 10px 0;
    text-align:justify;
    }

    And change style.css (line 554) from:

    h2 {style.css (l
    margin:30px 0 0;
    }

    to

    h2 {
    margin:0;
    }
  3. Samuel B
    moderator
    Posted 2 years ago #

    more likely unclosed elements

  4. esmi
    Theme Diva & Forum Moderator
    Posted 2 years ago #

    Doh! Didn't think to run a validation check.

  5. Samuel B
    moderator
    Posted 2 years ago #

    I missed that in the css, though - good catch

  6. spizz
    Member
    Posted 2 years ago #

    Thank you soooooooo much! That worked perfectly.

Topic Closed

This topic has been closed to new replies.

About this Topic