Space between faded grey line and post titles

  • Unknown's avatar

    Hello,

    I have a few CSS questions!

    After removing the post date, I now have a problem with the grey line dividing the posts. I want to keep it, but I would like there to be more space between the grey line and the post title, is that possible?

    Also, when I click to view a single post, a grey line appears above the post title, is it possible to remove this and instead move the post further up?

    And at last, I have a page added to my menubar, but when I view it, the content starts far down the page, can I move this further up as well?

    Thank you & kind regards,
    Maria D

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, let me help you

    After removing the post date, I now have a problem with the grey line dividing the posts. I want to keep it, but I would like there to be more space between the grey line and the post title, is that possible?

    We can add more margin-bottom for .hentry

    .home .hentry{
       margin-bottom: 80px;
    }

    Also, when I click to view a single post, a grey line appears above the post title, is it possible to remove this and instead move the post further up?

    .single .hentry{
       border-top: none;
    }

    And at last, I have a page added to my menubar, but when I view it, the content starts far down the page, can I move this further up as well?

    .page .entry-title{
    margin-top: -20px;
    }

    I hope it will helps you.

  • Unknown's avatar

    Oops sorry about the latest css, it should be like this

    .page .entry-title{
      margin-top: -20px;
    }
  • Unknown's avatar
  • Unknown's avatar

    @thesacredpath, It was cool! How about to make .single .hentry inside code box too? :)

  • Unknown's avatar

    Ah, didn’t see that. Done. :)

  • Unknown's avatar

    Many thanks Richard! :)

  • The topic ‘Space between faded grey line and post titles’ is closed to new replies.