
How to change the color of sales to red on the menu bar.
A user needed to change the color of the “sale” menu item to red in their Shopify store header.
Solution Provided:
#HeaderMenu-sale {
color: #ff0000 !important;
}
Outcome:
The solution was confirmed working by the original poster. The CSS targets the specific menu element ID and applies red color (#ff0000) with !important to override existing styles. Screenshots were provided showing the implementation steps and expected result.

How to change the color of sales to red on the menu bar.
@Harshal54 Please follow below steps to change the color of sale menu item. Let me know whether it is helpful for you.
#HeaderMenu-sale {
color: #ff0000 !important ;
}
Result will be like,
Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.
Thank you