Changing color of a menu item red

I am trying to make a menu item red so it stands out from the other collections. I did it for desktop but it did not work for mobile which is a bit confusing so I was wondering if anyone would know how I could make a menu item on mobile appear red? The code I used to make a collection item red is:

.header__primary-nav-item[data-title=“Last Chance Sale”] { color: red; }

The collection title I am trying to make red on mobile and desktop is called “Last Chance Sale”

Thank you so much!

Hey @thankgodusa ,

You can use this code instead.

a[href="/collections/last-chance-sale"] {
    color: red !important;
}
1 Like

Oh amazing! I appreciate that, it worked!

This would do as well.

.header__links-primary a[href=“/collections/sale”] {
color: red;
}