How can I change the color of clicked header menu categories?

Topic summary

A user encountered an issue where header menu categories turn white when clicked and wanted to change this color.

Solution Provided:

  • Navigate to: Themes → Edit Code → Assets → base.css
  • Add the following CSS code at the bottom of the base.css file:
.header__menu-item-active {
  color: inherit;
}

Outcome:
The solution was successfully implemented, and the user confirmed it resolved their issue.

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

When i click on a category in the header menu it changes color and turns white, how do i change the color of that?

Hi @Gustavo1105

This is David at SalesHunterThemes.

Thank you for your question.

Please share your store URL, page URL and also password (if your store has one) so we can help you.

https://rubycompany.com.br

Hi @Gustavo1105

Thank you for your question.
Follow this path:

Themes => edit code => asset => base.css

and add this code to bottom of the file base.css

.header__active-menu-item {
color: inherit;
}
1 Like

Thank you so much!