Hi guys,
I would like to align Product Review Stars status title to be under the stars In Product Card in collections and product page to that all stars in all products cards are aligned and in the center, in mobile view .
Thank you,
A user wants to center-align product review star ratings and their status titles within product cards on collection and product pages, ensuring consistent alignment across all cards.
Solution Provided:
base.css file (Online Store β Theme β Edit code β assets β base.css).spr-badge with display: contents for mobile viewports (max-width: 525px)Follow-up Adjustment:
margin-bottom: 20px to .spr-badge-caption span elementStatus: The issue appears resolved with the provided CSS customization, which addresses both alignment and spacing requirements for the review star display.
Hi guys,
I would like to align Product Review Stars status title to be under the stars In Product Card in collections and product page to that all stars in all products cards are aligned and in the center, in mobile view .
Thank you,
Hallo @Alliance
You can add code by following these steps to change
paste below code at bottom(base.css)
@media only screen and (max-width: 525px) {
.spr-badge {
display: contents !important;
}
}
If you require any further information, feel free to contact me.
Best regards,
Great. Only add buttom margin to the title status. Thank