Change The Color Of A Single Navigation Menu - Sense Theme

Topic summary

A user with the Sense theme wants to change the navigation menu color for a specific item (“sale”) to pink or red.

Solution provided:

  • Add custom CSS to the header targeting the sale menu item
  • Use the CSS selector #HeaderMenu-sale with a color property set to the desired hex code (example given: #f00 for red)

Outcome:

  • The solution was confirmed as working by the original poster
Summarized with AI on November 12. AI used: claude-sonnet-4-5-20250929.

Hello! I would like to change the color of the “sale” to pink or red in the navigation. I have the sense theme.

https://medusasmakeup.com/

Thanks!

2 Likes

Add custom CSS to header

a#HeaderMenu-sale {
color: #f00;
}

Thank you! it works!

1 Like