Changing a specific texts colour on the navigation menu

Hey guys I’m using the dawn theme and I’m looking to change the colour of a specific text (“Summer Sale”) on my main menu, to red.

Hi @Ryan47

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Sections> header.liquid
  3. Search for link.title within , if you have the newest version of dawn there will be 2 versions of the desktop nav, one for a dropdown and one for a mega-menu - you can see which one you are using in theme editor:


  1. Add code
{% if link.title == 'Summer Sale' %} style="color: red;"{% endif %}

as an inline style on link.title, you may have to do this in multiple places within header.liquid and within to cover whether the nav has multiple levels or not

e.g.


![Screenshot 2023-03-02 at 12.57.08.png|941x522](upload://dM9kGTmHOBvmShPh5d0tY7A2upw.png)

Hope this helps,

Sasha