Site logo

Archived topic

Page Header Design

5 replies · Started by Matthew on October 23, 2021

Viewing posts 1–6 of 6

I'm trying to get my page to appear in front of the page Header. I want it to look something like this Any ideas on how to do that?

Sure thing. I want to do this with specific pages and posts moving forward so I'll give you the link to one of those pages.

This CSS should work:

.site.grid-container {
    margin-top: -50px;
}

And to target this specific page:

.page-id-685 .site.grid-container {
    margin-top: -50px;
}

And to target multiple page:

.page-id-685 .site.grid-container,
.page-id-xxx .site.grid-container,
.page-id-xxxx .site.grid-container {
    margin-top: -50px;
}

Adding CSS: https://docs.generatepress.com/article/adding-css/

Thanks!

No problem :)

This archived topic is closed to new replies.