How can i center the price ?

Topic summary

A user seeks help centering product prices on their Shopify store.

Solution Provided:

  • Navigate to Online Store → Customize → Settings → Custom CSS
  • Add CSS code to center prices using flexbox properties (.price__container with display: flex and justify-content: center)

Additional Request:

  • User also asks how to center product titles
  • Solution: Add CSS targeting .full-unstyled-link h3 with text-align: center

Status: Issue resolved. User confirms the solution worked and expresses gratitude.

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

add this css there to center the titles

h3 .full-unstyled-link {
    text-align: center;
}