Padding mishap above blog page (unable to change)

Hello, on the blog page of my site (https://www.gravesbros.com/blog/), I am unable to add more padding at the top of my page. My header almost overlaps my first blog post. Screenshot attached.

I know that blog pages don’t work with cornerstone, but in the past I have been able to add padding with WPBakery.

I have tried this as well as manually adding padding via CSS, but cannot figure it out. Please help!

Thanks,

Tyler

Hi There,

This issue occurs because of this custom CSS:

.masthead {
    position: absolute;
    width: 100%;
}

It will make the header absolute on the blog page as well. To fix this, please add this custom CSS:

.blog .masthead {
    position: relative;
}

Hope it helps :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.