How do I change the color of page headers?

Hi everyone! This is driving me nuts - i’m trying to change the text color for my page titles (example: Contact, about us, privacy policy) to blue #313F99

I am using the Shopify Dawn theme and the customization options are very limited. I found code to change rich text colors but nothing for the basic page and policy titles.

Thank you!

Hi @SimplyAnastasia

If you add this to the bottom of your /assets/section-main-page.css file:

h1.main-page-title {
    color: #313F99;
}

It should change your titles to the required blue colour.

Let me know if that helps!

1 Like

It worked! Thank you so much!