is it possible to align the Review Stars alongside the Vendor & SKU in this theme?
theme preview - https://sjmhffon19xwpa50-17838313.shopifypreview.com
i had asked a similar question for a different theme and got great support thank you - but we’re focusing on updating our current theme.
@Linda_Ladley
Hi,
Please go to Assets > theme.css file and add the code below to the bottom of the theme.css file.
@media screen and (min-width: 641px) {
.product-meta__reviews-badge {
display: block;
float: left;
margin-top: -26px !important;
margin-left: 190px;
}
span.product-meta__sku {
margin-left: -12px;
}
}
@media screen and (max-width: 640px) {
.product-meta__reviews-badge {
display: block;
float: left;
margin-top: -30px !important;
margin-left: 190px;
}
span.product-meta__sku {
margin-left: -12px;
}
}
Hope it helps.
Thanks.
1 Like
@DavidEKim Thank you so much - you’re an absolute star!