I am trying to change .site-nav__label to be White .
I’ve tried editing in the css and adding code to the bottom but no luck. The arrow is there ebut you can’t see the text until you hover. I would like to change on desktop and mobile. Thank you!
https://fat-beet-farm-kitchen-bakery.myshopify.com/
password - aurtau
1 Like
@zamandanoel
sorry for that issue can you try this code
Go to Online Store->Theme->Edit code
Asset->/theme.css ->paste below code at the bottom of the file.
.site-nav__link--button {color: #fff;}
1 Like
Savior
November 11, 2021, 8:45am
3
@zamandanoel
Go to your store Actions > Edit Code
In Assets > theme.css add below lines at the bottom of the file:
.site-nav__label {
color: white; }
If it helped you solve your issue, please like and mark it as a solution. Thank you
1 Like
hello @zamandanoel
please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.
.site-header .grid .grid__item .site-nav__link {
color:#ffffff ;
}
1 Like
Hii, @zamandanoel
Paste this code on top of the theme.scss file.
.site-nav__link--button {
color: white !important;
}
button.btn--link.js-toggle-submenu.mobile-nav__link {
color: white !important;
}
Thank You.
1 Like
Thank you! this fixed both mobile and desktop.