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;
}
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!