Color change of sale on menu tab

Topic summary

A user needed to change the color of the “sale” menu item to red in their Shopify store header.

Solution Provided:

  • Navigate to Online Store → Themes → Customize
  • Access the Header section
  • Add custom CSS code targeting the sale menu item:
#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.

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

Harshal54_0-1715056451572.png

How to change the color of sales to red on the menu bar.

Baan Urban | Clothing & Apparel | Lifestyle & Homeware – Baan Urban | Clothing & Apparel | Lifestyle & Homeware (2819f6-e4.myshopify.com)

@Harshal54 Please follow below steps to change the color of sale menu item. Let me know whether it is helpful for you.

  1. From admin go to “Online Store” → “Themes”.
  2. Click “Customize” button from the current theme.
  3. Click “Header” and paste the below code in the “Custom CSS” field and save changes.
#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.

1 Like

Thank you