The solutions work partially—centering occurs on most products but fails on at least one specific product. The review stars alignment remains unresolved. Made4uo-Ribe offered additional code but noted it would center on desktop too, asking if mobile-only centering is preferred.
Outstanding Issues:
Inconsistent centering across all products
Review stars still not centered
Need for mobile-only solution confirmed but not yet implemented
Summarized with AI on October 31.
AI used: claude-sonnet-4-5-20250929.
So i’m trying to align the price and the reviews on the center, and after I tried many different ways from the shopify community, which none of them helped me, I’m asking you, please, to help me.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width: 749px){
.price__container {
text-align: center;
}
.Vtl-pr-review-stars-snippet.vtl-pr-review-stars-snippet.vtl-pr__product-title-star-snippets {
justify-content: center !important;
}
}