change color and bold of one item from menu

I have tried using many codes in base.css and theme.css including
.header__menu-item__ link[href=“/collections/final-sale”] {
color: red;
}
but nothing seems to work, can someone help ?

url of store:westernera.com

Hi @visheshk

You can used this selector.

a[href="/collections/on-sale"] {
    color: red;
    font-weight: 900;
}

And Save.

result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Hey, I tried this, it only working when i scroll down abit ( when the header has a bg basically )

Yes you have 2 header. one sticky and one is transparent.

Check this one.

.site-header-transparent a[href="/collections/on-sale"] {
    color: red;
}

And Save.