Reduce white space at the end of post

  • Posted in : Bloggy WP
  • gnetzer
    Participant

    I would like to reduce the white space underneath a post. Not to zero but just a little bit.

    Here is one Example, taken from this URL.

    Could tell me please which are the css-sections I have to custom edit?

    I figured out this ones but they won’t fix all the spaces (especially No.1):

    body.single article { padding-bottom: 0px; }
    body.single .nav-single { padding-top: 0px; padding-bottom: 0px; }
    body.single .comments-area { padding-top: 5px; padding-bottom: 0px; }

    Chrome developer Tool describes the Tag-Element as “footer.entry.meta.post-tags” but I can’t find the right syntax to change this class via custom CSS.

    Hope this post wasn’t too confusing.

    Thanks for any help!

    ahmetsali
    Keymaster

    Hi, for #1 try this custom css code;

    .single .entry-content {
        padding-bottom: 0;
    }
    .single footer.entry-meta.post-tags {
        margin-top: 0;
    }
    

    for #2

    nav.nav-single {
        padding: 0;
    }
    

    for #3

    div#comments {
        padding-top: 0;
    }
    

    for #4

    .commentlist {
        padding-top: 0;
    }
    .commentlist li p {
        margin-top: 0;
    }
    h2.comments-title {
        margin-bottom: 0;
    }
    
Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in and have valid license to reply to this topic.

License required for the following item
Login and Registration Log in · Register