How can i center the price ?
thanks in advance
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__containerwithdisplay: flexandjustify-content: center)
Additional Request:
- User also asks how to center product titles
- Solution: Add CSS targeting
.full-unstyled-link h3withtext-align: center
Status: Issue resolved. User confirms the solution worked and expresses gratitude.
What’s your store url ?
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 ![]()
