Make heading of multicolumn and feature product center align in sense theme

Topic summary

A user seeks to center-align headings for multicolumn and featured product sections on their Shopify store homepage using the Sense theme, which isn’t available through the standard customization interface.

Solution Process:

  • Multiple contributors provide CSS code snippets to be added to the theme.liquid file above the </head> tag
  • Initial solutions successfully center the multicolumn heading
  • Featured collection heading requires separate CSS targeting .title-wrapper-with-link classes with justify-content: center
  • One intermediate solution causes unintended formatting issues

Resolution:
The issue is resolved through iterative CSS adjustments. The final working code centers both the multicolumn and featured collection headings as requested. The user confirms the solution works in their final response.

Summarized with AI on November 17. AI used: claude-sonnet-4-5-20250929.

I want to make heading of multicolumn and featured product center align in my home page but couldn’t find any way to do it in shopify customization page.

Here is my store: https://b8ef01-3.myshopify.com/

password: euclew

Hi @JohnLiam231

Please follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Please find theme.liquid file
  4. Add the following code above tag

Hi, thanks for your help but I want the heading to be center aligned not the content

Hey @JohnLiam231

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 tag


RESULT:

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

Best Regards,
Moeed

3 Likes

@JohnLiam231
Please follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Please find theme.liquid file
  4. Add the following code above tag

It will work on mobile only.


Hi @JohnLiam231

Use this code for both resolutions.

.title-wrapper-with-link.title-wrapper--self-padded-mobile.title-wrapper--no-top-margin {
    justify-content: center;
}

Thanks, it work for multicolumn, but the featured collection heading still left align, can you help me with that too, thanks again.

Hey @JohnLiam231

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 tag


RESULT:

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

Best Regards,
Moeed

Hi, the heading become like this when I put in the code

@JohnLiam231

Please follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Please find theme.liquid file
  4. Add the following code above tag

1 Like

Thanks, it work