How to center the titles of all sections

Topic summary

A user seeks to center section titles across their Shopify store (bmcarcover.com). Multiple solutions are provided:

Proposed Solutions:

  • Add .title { text-align: center; width: 100%; } to each section’s custom CSS box in the customizer
  • Insert the same CSS into base.css file (located in assets folder)
  • Add CSS via theme.liquid file before the </head> tag
  • Use .title-wrapper-with-link { justify-content: center; } in base.css

Current Status:

  • The original poster reports the solutions failed specifically for blog titles
  • A follow-up check reveals that section titles already appear centered, suggesting either the issue was resolved or needs clarification about which specific sections still require adjustment

The discussion remains open regarding the blog title centering issue.

Summarized with AI on October 26. AI used: claude-sonnet-4-5-20250929.

web: bmcarcover.com

Hi @Jim_65 add this css in the custom css box of every section in customizer

.title {
    text-align: center;
width: 100%;
}

Hello @Jim_65 ,

Edit base.css you can find it under assets. Scroll down to bottom and add this css
.

.title {
    text-align: center;
}

Regards
Guleria

Hi @Jim_65 ,

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.liquid file
  3. In theme.liquid, paste the below code before

Result:

If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Use our Big Bulk Discount app to boost your sales! :rocket: (https://apps.shopify.com/big-bulk-discount). Easy to set up and perfect for attracting more customers with bulk discounts. Try it now and watch your revenue grow!

Hi there Jim @Jim_65 Follow these steps below

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset → base.css and paste this at the Bottom of the file:
.title-wrapper-with-link {
    justify-content: center;
}

why its failed for the title of blog

Hi @Jim_65

After further checking, it seems like the title of all sections are in center already. Please double-check if further part needs to be fixed or checked. Thank you!