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

Solved

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

Back9ine
Excursionist
16 0 2

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!

 

 

Accepted Solutions (2)

xtrend
Explorer
70 25 9

This is an accepted solution.

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;

}

View solution in original post

BSS-Commerce
Shopify Partner
3478 465 557

This is an accepted solution.

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>

view - 2024-02-19T174325.155.png 

Result:

view - 2024-02-19T174333.962.png

Hope it helps @Back9ine 

If our suggestions are useful, please let us know by giving it a like, marking it as a solution, or donating here .


B2B Solution & Custom Pricing | Product Labels by BSS


Need help from our expert? Kindly share your request with us via community@bsscommerce.com


BSS Commerce - Full-service eCommerce Agency

View solution in original post

Replies 3 (3)

xtrend
Explorer
70 25 9

This is an accepted solution.

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;

}

BSS-Commerce
Shopify Partner
3478 465 557

This is an accepted solution.

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>

view - 2024-02-19T174325.155.png 

Result:

view - 2024-02-19T174333.962.png

Hope it helps @Back9ine 

If our suggestions are useful, please let us know by giving it a like, marking it as a solution, or donating here .


B2B Solution & Custom Pricing | Product Labels by BSS


Need help from our expert? Kindly share your request with us via community@bsscommerce.com


BSS Commerce - Full-service eCommerce Agency
Back9ine
Excursionist
16 0 2

Hi, thank you for the help.

 

This code worked!