Change the color of a single collection / navigation title

Hi there!

I am using the Turbo theme version 9.4 and looking to change the color of a single navigation title. I would like to change the “Preorder Holiday Gifts” title to red #D6001C but leave the remaining navigation titles as they are. I’ve tried a couple different codes and none seem to work.

The URL is https://valerieconfections.com/collections

Thank you!

1 Like

Hi @vc6

Check this one.

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

.toggle_list a[href="/collections/preview-holiday-collection"] {
    color: #D6001C;
}

And save.

Result:

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

1 Like

Thank you! Worked perfectly.