• Resolved lauriepk

    (@lauriepk)


    Hi, can you please tell me the css code that will reduce the whitespace above the post title on a single post? I’d also like less space before the beginning of the post text itself.

    Thank you!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey, lauriepk, I’m another Neve user.

    This CSS can be a good starting point for you to start playing around with:

    .nv-single-post-wrap>div:not(:last-child) {
    margin: 0;
    }

    Thread Starter lauriepk

    (@lauriepk)

    Thanks, Ian! It didn’t work as it is – though I understand you said “start playing around with.” The problem is that I have no idea where to start playing.

    I do have code that removes the top margin. If you see something there that might help the space around the post title, please let me know.

    /* Remove margin top */
    .nv-single-post-wrap .entry-header:first-child, .nv-single-post-wrap .nv-content-wrap:first-child, .nv-single-post-wrap .nv-post-navigation:first-child, .nv-single-post-wrap .nv-tags-list:first-child, .nv-single-post-wrap .nv-thumb-wrap:first-child {
    margin-top:0;
    }

    Thanks again – I appreciate your response very much!

    Hi @lauriepk!

    The code below will reduce the space below the post title.

    .single-post .entry-header {
    margin-bottom: 0px !important;
    }

    Have a nice day!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘decrease space around post title’ is closed to new replies.