How to center heading

Solved

How to center heading

babidibooparty
Excursionist
15 0 4

Hi. In my Dawn Theme, on Mobile, and Desktop,  I need to center the heading "CHRISTMAS COLLECTION" for the featured section list. Thanks for any help in advance!

Store: www.babidiboo.com 

Accepted Solution (1)

HafizFahadMunir
Shopify Partner
15 4 3

This is an accepted solution.

Hi @babidibooparty , Here are the simple steps you can follow and center the heading.

1. On shopify admin go to sales channel and select online store 
2. Click on customize the theme
3. Then got that featured collection section
4. in that section scroll to full down and you will find custom CSS 
5. Then add the following code in the section 

.title.inline-richtext {
  text-align: center;
}

View solution in original post

Replies 6 (6)

HafizFahadMunir
Shopify Partner
15 4 3

This is an accepted solution.

Hi @babidibooparty , Here are the simple steps you can follow and center the heading.

1. On shopify admin go to sales channel and select online store 
2. Click on customize the theme
3. Then got that featured collection section
4. in that section scroll to full down and you will find custom CSS 
5. Then add the following code in the section 

.title.inline-richtext {
  text-align: center;
}
babidibooparty
Excursionist
15 0 4

Hi! this worked! thank you so much!

HafizFahadMunir
Shopify Partner
15 4 3

Glad my solution worked for you.

diana14koro
Visitor
1 0 0

hi I having problems with my heading collection its not centering with any of the codes Ive tried them all im not sure why 

Mehran_Ali
Shopify Partner
462 63 70

Hi @babidibooparty 

 

Just follow the steps Below:

  1. Go to online store ->  theme 
  2. select three dots and select code edit 
  3. Search for the file theme.css and base.css 
  4. past that code at the end 

 

.collection .collection__title .title {
    text-align: center;
}​

 

The result:

Mehran_Ali_0-1733168739203.png

 

I hope this solution worked for you!
If yes Just like this Reply and Mark it as a Solution and to keep me motivated BUY ME A Coffee

-If this solution helps you, kindly LIKE THIS REPLY and MARK AS A SOLUTION OR

Buying Me A Coffee.

-If you need an expert Shopify developer for customization and development, feel free to contact me.


Email: Mehran.ali5300@gmail.com


WhatsApp: +92 343 0211536

HafizFahadMunir
Shopify Partner
15 4 3

Hi, You can center heading following this way
1. Open theme customizer the on homepage template goto that section 
2. Then on section settings scroll down and find custom CSS
and page this code there:

.title.inline-richtext {
  text-align: center;
}