Archived topic
Page Header Design
5 replies · Started by Matthew on October 23, 2021
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?
Hi Matthew,
Some custom CSS will be needed.
Any chance you can link us to the site in question?
You can use the private information field.
https://docs.generatepress.com/article/using-the-premium-support-forum/#private-information
Let me know :)
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 :)