Any help with changing the cart pop up window background color in the dawn theme to something like dark grey? The double gradient looks off. From what I understand it has to be edited in the theme code? Thanks
Topic summary
A user seeks to change the cart popup background color in Shopify’s Dawn theme from a double gradient to dark grey, requiring theme code modification.
Solution Provided:
- Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
- Locate the CSS file (base.css, style.css, or theme.css) in the Assets folder
- Add the following code at the bottom:
div#cart-notification {
background: darkgrey !important;
}
Outcome:
The CSS modification successfully changed the cart notification background to dark grey. The issue was resolved, with the user confirming the solution worked as intended.
Hi @hannahbbpm
Please, share your store URL. Thanks!
Hi @hannahbbpm ,
Thank you for reaching out to the Shopify community. I’d be glad to assist you. Could you kindly share your store URL and
password (if it’s password-protected) so I can review it and provide you with an update?
Thanks for the info, try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
div#cart-notification {
background: darkgrey !important;
}
- And Save.
- Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
That did it! Thank you very much ![]()

