When i click on a category in the header menu it changes color and turns white, how do i change the color of that?
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.
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.
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!

