How to remove background color where image banner resides? Dawn theme version 11.
I want it to be white. Changing color scheme has no effect.
My site:
https://ec6bc3-2.myshopify.com/
PW
eawhup
A user needed to change the background color of an image banner section to white in Shopify’s Dawn theme version 11, as adjusting the color scheme settings had no effect.
Solution provided:
.banner__media.media.scroll-trigger.animate--fade-in { background: white !important; }
Outcome:
The user successfully applied the custom CSS code and confirmed it resolved the issue. The solution uses the !important flag to override existing background color styles on the banner media element.
How to remove background color where image banner resides? Dawn theme version 11.
I want it to be white. Changing color scheme has no effect.
My site:
https://ec6bc3-2.myshopify.com/
PW
eawhup
Hi @daved1234 ,
Try this.
.banner__media.media.scroll-trigger.animate--fade-in {background:white !important;}
Result:
I hope it help.
Thank you!
I added your code to custom CSS and it worked!