Hi, I’ve got this white bar that appears at the top of my page on two of the pages I’ve built with BeaverBuilder. How do I remove this?
Hi Cherry,
Can you provide a link to your site, please.
Hi Cherry,
There’s custom CSS in your Magnolia theme that creates a top margin above the content area (in the style.css stylesheet).
To prevent this, you can try to overwrite the CSS by adding this rule to BB Tools > Global settings > CSS or in the Customizer > Code (depending on the options available in this specific theme):
.magnolia-landing .content {
margin-top: 0;
}