How can I align the page title to the center in the Dawn theme?

Topic summary

A user seeks to center-align page titles in Shopify’s Dawn theme, expressing frustration that this isn’t a built-in feature.

Solution Provided:

  • Add CSS code to assets/section-main-page.css:
    .main-page-title { text-align: center !important; }
    

Collection Pages:

  • For collection page titles, use:
    .section-header__title { text-align: center; }
    
  • The original poster encountered an issue where collection descriptions weren’t centering due to a 66% width constraint in collection-hero.css, which they resolved by changing to 100% width.

Ongoing Questions:

  • One user reports the solution isn’t working for their collection pages and is awaiting troubleshooting help.
  • Another asks whether the same approach applies to the Sense theme and custom pages, with a request for their store URL to investigate further.

The thread remains active with users seeking clarification for specific theme variations.

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

Solved the problem. The box was just 66% width for the collection description. Changed it to 100% in collection-hero.css

1 Like