How to change a particular collection heading color to something else?

Hello,

I would be happy to seek help from you, I would like to know how to change a particular collections heading text color to something else rather than just black. For example, my website is Rozé and the collection I would like to change is Lights in which on the menu and on the page, the heading, if possible, I need it to look outstanding from that of other menus.


# Lights

This is just an example of what I need to achieve, I’m using Dawn as my Theme. I would appreciate all the. help you could give me. Thank you so much in advance.

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find layout/theme.liquid and paste this at the bottom of the file:
{% if collection.handle == 'lights' %}

{% endif %}

Thank you so much for the help. It WORKEEEED!

Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance.

I tried this on my store for my holiday collection I wanted it to be color #FF221D and it doesn’t seem to be working. I used the following code.

{% if collection.handle == ‘holiday’ %}

h1.collection-hero__title{ color: #FF221D; text-shadow: 1px 2px 4px #000000; }

{% endif %}