Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Centre collection title on default collection - Dawn theme

Solved

Centre collection title on default collection - Dawn theme

wattsga
Shopify Partner
20 0 5

I am trying to centre the title of the collection banner. I want this to be standard for every collection page however I am unsure of what code to add. I have attached a picture of what I mean as currently it seems to be on the left by default.

 

Collection banner title.JPG

Accepted Solution (1)

DaisyVo
Shopify Partner
775 102 116

This is an accepted solution.

Hi @wattsga 

To complete your requests, please follow these steps:
  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section

 

.collection-hero__text-wrapper h1.collection-hero__title {
    text-align: center !important;
}

 

 
I hope this helps!
 
Best regards,
 
Daisy
Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution

View solution in original post

Replies 3 (3)

Moeed
Shopify Partner
6297 1711 2056

Hey @wattsga 

 

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 </body> tag

<style>
h1.collection-hero__title {
    text-align: center !important;
}
</style>

 

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

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Create high-converting pages - PageFly Page Builder.


DaisyVo
Shopify Partner
775 102 116

This is an accepted solution.

Hi @wattsga 

To complete your requests, please follow these steps:
  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section

 

.collection-hero__text-wrapper h1.collection-hero__title {
    text-align: center !important;
}

 

 
I hope this helps!
 
Best regards,
 
Daisy
Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
wattsga
Shopify Partner
20 0 5

That worked thank you!