Need help changing sale tab on menu to red colour
Quick solution
add this CSS line to bottom of your assets/theme.scss.css or assets/theme.scss.liquid file
.site-nav__link[href="/collections/sale"] {color: red;}
yes, please try this code
- Go to Online Store->Theme->Edit code
- Asset->/theme.scss.liquid->paste below code at the bottom of the file.
a[href="/collections/sale"] {
color: red;
}