Archived topic
padding not visible in customizer, but visible on site
4 replies · Started by Jasper on February 24, 2017
I have this issue i can't find a solution.
In the customizer i set in the layout section everything to 0 and below the header there is no white space visible, but on the live site there is a padding visible below the menu.
https://jasper.jsierink.nl/
Hi Jasper,
I believe that gap has been fixed in the next version.
For now use this CSS:
.separate-containers .page-header {
margin-bottom: 0;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know.
Actually that looks like it's being added by the breadcrumbs script you've added to your side.
You've added CSS to hide it like this:
.home #breadcrumbs {
display: none;
}
However, it should be this:
.home .page-header {
display: none;
}
That's it, thanks again for the support
Glad we could help!