Hi i am trying to remove this white box form the page.
Link:
https://wmqgez-r2.myshopify.com/pages/print-design
Warm regards.
A user seeks to remove a white box appearing on their Shopify store’s image banner page. An image shows the unwanted white box overlay on the banner.
Proposed Solutions:
CSS targeting specific banner ID: Two responders suggest adding custom CSS to base.css that hides the banner box using display: none with the specific banner template ID.
Generic CSS approach: Another solution proposes hiding .banner__content entirely through custom CSS in the section settings.
Check section settings first: One responder recommends verifying the banner section configuration before applying CSS fixes—specifically ensuring the text block is empty/hidden and the container setting is disabled.
The discussion remains open with multiple CSS-based approaches offered, though no confirmation of which solution worked. The last suggestion emphasizes checking native Shopify settings before resorting to custom code.
Hi i am trying to remove this white box form the page.
Link:
https://wmqgez-r2.myshopify.com/pages/print-design
Warm regards.
Hello @Artez
#Banner-template--18647733829813__image_banner_KC7qec.banner--mobile-bottom .banner__box {
display: none;
}
Hi @Artez
Let try to add this custom CSS code to your file base.css or theme settings:
#Banner-template--18647733829813__image_banner_KC7qec .banner__box {
display: none;
}
the result will be
Please add this code to Custom CSS of that section
.banner__content { display: none; }
Before you edit your theme code or apply custom css make sure that section settings are right.
Make sure that “text” block is either completely empty or hidden/removed from the section.
Also check that “container” is turned off in section settings.