How to change the color of a menu option in the Broadcast theme?

Could you provide me with the code for the Broadcast theme please to change the ‘Valentines’ header menu option to red?

The website is juvidesigns.com and I would like it in mobile and desktop, please?

Thank you

Hey @juvidesigns ,

Try this!

Go to your theme’s “Edit Code” Option, then in the search bar type “theme.liquid”
Below the tag “” tag paste the following. Screenshot attached for reference.

In both the codes, if you ever add more items to the header, make sure the “:nth-child(3)”'s number 3 reflects the position of the “Valentines” link in the header. Now it’s 3 because it’s the 3rd item in the header.


Screenshot is for reference only, the correct code to paste is the one shown above.

Hi @juvidesigns

Check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

.menu__item.child span, a.sliderow__title {
    color: red !important;
}

And Save.

Result:

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