How do I align "About Us" Text (Be Yours Theme)

Hello,

How do I center align the “About Us” and “Get In Touch” titles on my About Us page.

https://backnineskincare.com/pages/about-us

Thanks so much!

go to your store > theme > customize > page template or theme settings > custom css or theme base.css

.section h1.page-title {

text-align: center !important;

}

.section h2.title {

width: 100%;

text-align: center;

}

1 Like

Hi @Back9ine ,

Go to Edit code, search for the theme.liquid file and put the following code at the end of the file:

<style>
  #shopify-section-template--16606470504626__main h1.page-title {
    text-align: center !important;
  }
  #shopify-section-template--16606470504626__d06db912-3072-4857-8645-6c72251af120 div.title-wrapper h2 {
    width: 100% !important;
  }
</style>

Result:

Hope it helps @Back9ine

1 Like

Hi, thank you for the help.

This code worked!