How to center product titles and pricing on Dawn theme?

Topic summary

Issue: Product titles and prices on Shopify’s Dawn theme collection pages appear off-center. Screenshots show misaligned text under product cards.

Proposed fix: Add a CSS rule to the theme stylesheet (base.css) to center the product card content:

  • .card__content { margin: 0 auto !important; }

Result: The added rule did not resolve the issue.

Follow-up guidance: Remove an existing custom CSS rule that sets the content width to 80%, which is preventing proper centering. The conflicting width needs to be deleted for the centering to take effect.

Status: No confirmation of resolution yet. Next action is to remove the 80% width rule and recheck alignment; the margin auto rule may then work as intended.

Summarized with AI on January 18. AI used: gpt-5.

So i have made pages for my different collections, but the titles and pricing are off center, whats some code to fix this?

theme:dawn

Website:desire-online.net

Hi @jakegrieveson

Please add this code at the bottom of your base.css file in Online store > Themes > Edit code > Assets to solve it

.card__content { margin: 0 auto !important; }

This didnt seem to work

So pleas remove the code that you set width of that content is 80% to solve the issue.