How can I center align a heading in the Dawn theme using custom CSS?

Solved

How can I center align a heading in the Dawn theme using custom CSS?

SaeedAhmad
New Member
4 0 0

How can I shift this red marked heading to the centre. I need a custom css code.

Thanks in advance.

Screenshot (33).png

Accepted Solution (1)
Moeed
Shopify Partner
6980 1883 2300

This is an accepted solution.

Hey @SaeedAhmad 


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>
.title-wrapper-with-link.title-wrapper--self-padded-mobile.title-wrapper--no-top-margin {
    place-content: center;
}
</style>

Don't forget to Like it and Mark it as Solution! 

 

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

Replies 4 (4)

Moeed
Shopify Partner
6980 1883 2300

Hey @SaeedAhmad 
Can you please share your Store URL and password if enabled?

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


SaeedAhmad
New Member
4 0 0

Hi Moeed, 

Store URL: https://ecocraveworld.com

Moeed
Shopify Partner
6980 1883 2300

This is an accepted solution.

Hey @SaeedAhmad 


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>
.title-wrapper-with-link.title-wrapper--self-padded-mobile.title-wrapper--no-top-margin {
    place-content: center;
}
</style>

Don't forget to Like it and Mark it as Solution! 

 

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


SaeedAhmad
New Member
4 0 0

Thanks a lot. It worked.