How to center new section text on home page (Dawn Theme)

This is a Dawn theme. How do I centre the section text on home page? It seems to come default with left alignment.

See screenshot below. The word “Collections”. How do I center it? Thanks a lot

Hi @cheryl14 ,

Please share your store URL and if your store is password protected then please provide password too.

So that we can help you.

Thank you.

https://furniturity.myshopify.com

Password: weughe

Thank you!

Hi @cheryl14 ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/section-multicolumn.css>paste below code at the bottom of the file:
.multicolumn .title-wrapper-with-link {
    justify-content: center;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Thank you! This solved my problem!

For other’s reference, to make the entire page section to be centred, we probably need to look into other section as well such as the

template-collection.css

and add the following

.collection .title-wrapper-with-link {
justify-content: center;
}