Hi there,
I have a menu with some titles of collections. One of my collections is titled “CLEARANCE” and I wanted to have the letter highlighted Red and Bolded. I have attached an image of my homepage and the word that I would like highlighted Red.
The domain is masksnz.co.nz
Any help is really appreciated 
Thanks
Kind regards,
Matthew Munro
Hi @matthewmunronz
You can follow the instruction below:
- Go to Online Store->Theme->Edit code
- Asset->/theme.scss->paste below code at the bottom of the file:
.menu-bar__item a[href="/collections/clearance-1"] {
font-weight: bold !important;
color: red !important;
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
1 Like
Please add below css in bottom of assets/theme.scss.css file
ul li.menu-bar__item:nth-child(6) a {
color: red;
font-weight: 600;
}
Thank you.
1 Like