remove white box from image banner

Topic summary

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.

Summarized with AI on October 27. AI used: claude-sonnet-4-5-20250929.

Hi i am trying to remove this white box form the page.
Link:

https://wmqgez-r2.myshopify.com/pages/print-design

Warm regards.

1 Like

Hello @Artez

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottow of the file:
#Banner-template--18647733829813__image_banner_KC7qec.banner--mobile-bottom .banner__box {
display: none;
}

2 Likes

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

1 Like

Please add this code to Custom CSS of that section

.banner__content { display: none; }
1 Like

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.