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.

How can i center the price ?
thanks in advance

What’s your store url ?

https://e018c6-82.myshopify.com/

Go to your online store → customize → settings → custom css and paste this code there

.price__container {
    display: flex !important;
    justify-content: center;
}

what about the ptoducts title how can i center them too ?

add this css there to center the titles

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

thank you bro so much for your help

Happy to help you :slightly_smiling_face: