Centre alignment of page title on Dawn theme

Hi,

I’m looking to centre the page titles on my website.

I’ve tried some suggested fixes on the forum but it changes the title alignment across my whole site.

I’d like to keep my product titles aligned to left, and have my page titles aligned in the centre.

Any help would be greatly appreciated.

Page in question here: https://pobladocoffi.co.uk/pages/our-story

Thanks

@PobladoCoffi Go to assets/section-main-page.css and paste below css at bottom of file.

.main-page-title
{
text-align: Center !important; 
}
2 Likes

Hi @PobladoCoffi

Please go to your Themes > Edit code > Assets > Open section-main-page.css and add the following code to the bottom of the file.

h1.main-page-title {
  text-align: center !important; 
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any questions!

Thank you so much!! This worked perfectly.