How can I center the title on my Studio Theme page?

Hi,

I’m having some problems with my pages. I would like for all the default page I create that the Title is always centered.

For example I created an Our Story page and as you can see title is not centered.

Page: https://sawai.co.uk/pages/our-story

Password: awskao

Thanks!

Hi @ClaytonJ
You can try follow this path:
Themes => edit code => asset => base.css
and add this code to bottom of the file base.css

.main-page-title{
text-align: center;
}
1 Like

Hey @ClaytonJ ,
Welcome to the Shopify community!
You can follow the instruction below:
Go to Online Store->Theme->Edit code->base.css->paste bellow code in bottom of file.

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

If you feel like my answer is helpful, please Like and mark it as a solution**.** Let me know if you have any further questions.
Thank you!
Raman

1 Like