Retina Theme: Make Sale in Menu Header Red

Hi all, ive seen this question alot but no solution works for Retina theme. Do you know how to make it work please? The sale collection is 4th item in the menu header.

Thank you in advance!

Hey @OakWoodWine
Kindly share your Store URL and Password if enabled

Could you share the link to your website? Thanks.

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the bottom of the file:
.main-nav__tier-1-item a[href="/collections/on-sale"] {
color: red;
}

Hello @OakWoodWine

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->theme.css>Add this code at the bottom.

li.main-nav__tier-1-item:nth-child(5) a.main-nav__tier-1-link {
    color: red !important;
}