How can I change heading colors in the Dawn theme?

I’d like to change all headings color throughout my store except for the heading in the image banner. Can someone help please?

@Alexis10 can you share your store URL ?

Here it is: https://mytwoladiesknitting.myshopify.com/

Thanks!

@Alexis10 add this css in assets > base.css

h2:not(.banner__heading) {
color: black;
}

this will change the color of all h2 heading to black except the home banner

The headings are already black. I want them to be one of my brand colors #DAA828.

@Alexis10

h2:not(.banner__heading), h1, h3, h4, h5, .h0, .h1, .h2, .h3, .h4, .h5 {
color: #DAA828;
}

It worked but it changed the banner heading too. Why is there no way to edit the color of headlines individually and without having to code? This is ridiculous.

Sorry replace with this

h2:not(.banner__heading), h1, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
color: #DAA828;
}

1 Like

That worked. Thanks!