How to disappear Image banner container Shopify 2.0

Hello! I would like to ask for your help. I’m using the Dawn theme, and with this code, I changed the entire store’s background to an image by inserting it at the bottom of the base.css:

.gradient {
background: var(–gradient-background);
background-attachment: fixed;
background-image: url(https://cdn.shopify.com/s/files/1/0576/2233/1494/files/imagebackground.webp) !important;
background-color: transparent !important;
background-position: top left !important;
background-size: auto !important;
}

But now, I don’t know why, when I want the container disappear for the image banner(or slideshow), it still remains there. Why is that? Could you help me with this please?

Hi @szrichard37 ,

Can you kindly share your store link (with the password, if any) with us? We will check it and suggest you a solution if possible.

Sorry, but I’ve already managed to solve the problem!:slight_smile: By the way, since we’re already here, I hope I can help others with this code, as it helped me solve it:

.banner__box.content-container.content-container–full-width-mobile.color-scheme-1.gradient {
background: transparent !important;
}

You need to insert it at the bottom of the base.css, where you also placed the aforementioned code.

1 Like

Thank you! Needed this.