So I have been trying to change the color of the navigation menu and was successful at that but now if I change the font color of my header menu, which I want white, the icon colors of my header also change. I want to change the colors of just the navigation menu fonts. Please help?
Hello,
Try with this code at the bottom of your base.css file. (inside assets folder)
.menu-drawer__navigation-container {
background: black;
}
.list-menu__item {
color: white;
}
.list-menu__item:hover {
color: gray;
}
Result:
Hope this helps,
Hey man, thanks, the hover color however turns to black.
You are welcome!
Did you set the color hover to gray?
I first send the code with black then I edited.
Please confirm if it exactly as this.
.list-menu__item:hover {
color: gray;
}
Let me know!


