Make one link red in the nav bar

Can anyone help me make the SALE link in the nav bar red. Only the sale link

Store preview: https://km8uqps5ab0n6hgw-46093959333.shopifypreview.com

Thanks

Hello @gmedia

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

li.site-nav--has-dropdown a[href="/collections/sale-preview"] .site-nav--link-text{ color: red !important; }

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

Hello @gmedia

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.min.css and paste this at the Bottom of the file:
.mega-menu-wrapper a[href="/collections/sale-preview"] {
font-weight: bold!important;
color: red!important;
}

Thanks so much!

Do you know how I can do it for the mobile menu too?

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

@media screen and (max-width: 767){ a[href="/collections/sale-preview"].mobile-nav__link { color: red !important; } }

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.