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
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
@Amit27 Please follow below steps to display the “SALE” in red color and let me know whether it is helpful for you.
From admin, go to “Online Store” → “Themes”.
Click action button from the current theme and select “Edit code”.
Search “base.css” file and find the code .menu-toolbar a[href=“/collections/flat-30”].
Add “!important” to the color value like below.
color: #ff0000 !important;
![]()
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.