How can I change my page title colors in coding?

Hi guys I’ve been trying to find the right coding to change the colour of my titles on my pages for products/collections etc

I can’t seem to find the right code and what file I need to add the codes too can someone please help my heads ready to explode :see_no_evil_monkey:

Hi @BekiGems ,

Please follow the steps:-

  1. Go to Online Store->Theme->Edit code
  2. Asset->theme.css

Paste the below code at the bottom of the file.

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    color: #000;
}

In case you want hex color code - https://www.color-hex.com/

Thanks

Thank you very much for replying to me, however it didn’t work :disappointed_face:

any other suggestions?

@BekiGems can you share url to your site?

www.astringofgems.co.uk

password is dergli

password dergli is not working

Sorry @PeanutButter its dregli my bad!

@BekiGems you can try this code:

.section-header h1 {
  color: #000;
}

Of course replacing #000 with your desired color.

If this fixes your issue please Like and mark my response as accepted

1 Like

Thank you very much!