How to change 'sale' under SHOP navigation into red for Mobile

I am using Ari Template Theme
Sale tab is a 2nd tier under the main SHOP navigation and we would like to make the sale tab red.
And I was able to use the below steps to make the sale tab under the shop navigation to be red in color on desktop, but mobile navigation still show original color, not in red.
Website url: https://parallel51.co/

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file base.css, theme.css, styles.css or theme.scss.liquid

Step 3: Insert the below code at the bottom of the file → Save

a.navlink.navlink--child[href='/collections/warehouse-sale'] {
    color: red !important;
}

Would anyone know how to make the SALE tab red on mobile also?

1 Like

Hi @tiffanymwc

.sliderule__wrapper a.sliderow__title[href='/collections/warehouse-sale'] {
color: red !important;
}

Please use this for mobile, please put it after desktop css code
Thanks!

Hi @tiffanymwc

Check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

a.sliderow__title[href="/collections/warehouse-sale"] {
    color:red;
}

And Save.

Result: