hi! in the header the words ‘quarter zip’ and ‘polo shirt’ are not completely white. they only get white when you put your cursor on it. i want the words to be white all the time, so not once you get your cursor on it. can someone help me?
Topic summary
A user is experiencing an issue where navigation menu items (‘quarter zip’ and ‘polo shirt’) in their website header only turn white on hover, rather than displaying white constantly.
Proposed Solution:
Another user provided CSS code to fix this:
- Navigate to: Shopify Admin → Online Store → Themes → Actions → Edit Code
- Open the
base.cssfile in the Assets folder - Add the following CSS at the top of the file:
.header__menu-item {
color: #fff;
}
This CSS rule forces header menu items to display white text at all times, removing the hover-only white color effect.
