So when i add something to my cart, the cart is transparent, how do i change the background to white with code?
Theme: Dawn
Website: desire-online.net
A user wants to remove transparency from the cart dropdown in the Dawn theme and make it white.
Solution provided:
component-cart-notification.css file#cart-notification {
background-color: #fff;
}
This CSS targets the cart notification element and sets a solid white background, replacing the default transparent styling.
So when i add something to my cart, the cart is transparent, how do i change the background to white with code?
Theme: Dawn
Website: desire-online.net
Hello @jakegrieveson ,
Follow these steps:
Go to Online Store → Theme → Edit code
Open your component-cart-notification.css.css file and paste the following code below:
#cart-notification {
background-color: #fff;
}
Thanks