How can I modify the sale color in my toolbar?

Hi, I want to change sale color red in toolbar. When I load my site, at first instance it show red but again change to black.

Here is store url

www.thealbelistudio.com

@Amit27 Please follow below steps to display the “SALE” in red color and let me know whether it is helpful for you.

  1. From admin, go to “Online Store” → “Themes”.

  2. Click action button from the current theme and select “Edit code”.

  3. Search “base.css” file and find the code .menu-toolbar a[href=“/collections/flat-30”].

  4. Add “!important” to the color value like below.

color: #ff0000 !important;

priyavinsinfo_1-1710258165663.png

  1. Now, it will display in red color.

Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.

Hello @Amit27

Welcome to Shopify Community.

Please paste the css in base.css file.

.menu-toolbar a[href="/collections/flat-30"] {
color: red !important;
}

Thanks

Thanks a lot. This is working fine.