Cart type, Popup notification, Dawn theme

Topic summary

A user encountered an issue with a cart notification button displaying orange text instead of white in their Dawn theme, despite the color scheme settings indicating it should be white.

Problem Details:

  • The button text color wasn’t matching the configured color scheme
  • Other elements were working correctly
  • User provided screenshots of both the frontend issue and theme settings

Solutions Provided:

Two community members offered CSS-based fixes:

  1. First solution: Add custom CSS to the base.css, style.css, or theme.css file in the Assets folder:
a#cart-notification-button {
  color: white !important;
}
  1. Second solution: Insert CSS code in the theme.liquid file, above the </head> tag (similar styling approach)

Resolution:
The issue was successfully resolved. The user confirmed the solutions worked and thanked the contributors.

Summarized with AI on November 9. AI used: claude-sonnet-4-5-20250929.

Hi

I can’t figure out why the text on one button is orange (it should be white). I’m attaching images of the front end and the settings of the colour scheme. Can someone help me change the text to white without affecting other elements?

Thank you in advance.

Ellen

1 Like

Hi, @ellsta

Please share the store URL so that I can assist you.

https://ab0e63-a2.myshopify.com/

maufea

Hi @ellsta

Check 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:

a#cart-notification-button {
    color: white !important;
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code above the tag


After modification:

Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!

Thanks a lot!