Need help changing sale tab on menu bar to 'red' colour

Need help changing sale tab on menu to red colour

url : yoursportsperformance.com

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;}

@yoursportsperfo

yes, please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.
a[href="/collections/sale"] {
    color: red;
}