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
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Sections> header.liquid
- 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:
- 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.
Hope this helps,
Sasha


