Align Product Review Stars status title to be under the stars In Product Card

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,

https://allianceautoproducts.com/

Hallo @Alliance

You can add code by following these steps to change

  1. Go to Online Store → Theme → Edit code > assets > base.css

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,

1 Like

Great. Only add buttom margin to the title status. Thank

@Alliance

paste below code at bottom(base.css)

@media only screen and (max-width: 525px) {
span.spr-badge-caption {
margin-bottom: 20px;
}
}

1 Like