• Resolved caefavsvs

    (@awa4000)


    I’m trying to figure out how to get rid of the large amount of empty, white space above my individual posts. I’ve got a title, the date/how many comments, a Facebook Like button, an inch and a half or so of white space, and finally my post content (in descending order).

    I’ve been searching the page.php, post.php, and my style sheet but I’m a newb at this and haven’t found the problem. Any help would be greatly appreciated.

    –Anthony

Viewing 4 replies - 1 through 4 (of 4 total)
  • Unless you provide a link to a page demonstrating the problem, no one will be able to offer much in the way of assistance.

    Thread Starter caefavsvs

    (@awa4000)

    Of course! It’s https://www.ironandiron.com

    In mystyle.css, change:

    h1, h2 {
        margin-bottom: 3px;
        margin-top: 5px;
    }
    p.postmeta {
        line-height: 25px;
    }
    p.details {
        border-top: 2px solid #FFFFFF;
        clear: both;
        line-height: 25px;
        margin-top: 5px;
    }

    to:

    h1 {
        margin-bottom: 3px;
        margin-top: 5px;
    }
    h2 {
        margin-bottom: 0;
        margin-top: 5px;
    }
    p.postmeta {
        line-height: 1em;
    }
    p.details {
        border-top: none;
        clear: both;
        line-height: 1em;
        margin: 0;
    }
    Thread Starter caefavsvs

    (@awa4000)

    Thanks a lot for the tips! I figured out that the Facebook like plugin I was using was causing the problem so I deleted it and just used the code from Facebook instead. Have a good one!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Too much empty space between title and content’ is closed to new replies.