I am trying to implement the product review code provided by the Shopify app and it works but it is centered, is there anyway to left align it?
{{ product.metafields.spr.reviews }}
this is the snippet of code I want to left align
I am trying to implement the product review code provided by the Shopify app and it works but it is centered, is there anyway to left align it?
this is the snippet of code I want to left align
Hi @PatJo ,
Please add code CSS:
.spr-container.spr-container,
.spr-container .spr-summary.spr-summary {
text-align: left !important;
}
.spr-container .spr-summary-starrating{
justify-content: left !important;
}
Hope it helps!