Centering titles in Boost Theme

Hello,

I am currently using the Boost Theme version 1.3.3. I have a default page that has been created and would like the page title to be centered. This is how the page currently looks. Would love some help!

1 Like

Hi @MKozlowski .

Would you mind to share your store preview? Thanks!

Hey @MKozlowski
Kindly share your Store URL and Password if enabled

Our URL is scrubpro.com

1 Like

Hey @MKozlowski

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

Thank you for the information. Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
h1.large-title.row {
    text-align: center;
}

Result:

I hope it help.