Solved

How to Centre "Write a Review" in Yotpo

boundlove
Excursionist
32 1 5

Hey,

 

I'm trying to centre the 'write a review' on the product page so it is aligned with the product brand + title. See attached screenshot! Preview link is here --> https://ffp0skb4ofy3m50w-13737099310.shopifypreview.com

 Screen Shot 2021-11-11 at 5.29.18 PM.png

Accepted Solution (1)

Zworthkey
Shopify Partner
5581 642 1569

This is an accepted solution.

Hii, @boundlove 
Paste this code on top of the widget.css file.

@media only screen and (min-width: 992px) {
.yotpo-bottomline.pull-left.star-clickable {
    margin-left: 33% !important;
}
}
@media only screen and (max-width: 749px) {
.yotpo-bottomline.pull-left.star-clickable {
    margin-left: 25% !important;
}
}

Thank You.

View solution in original post

Replies 2 (2)

Zworthkey
Shopify Partner
5581 642 1569

This is an accepted solution.

Hii, @boundlove 
Paste this code on top of the widget.css file.

@media only screen and (min-width: 992px) {
.yotpo-bottomline.pull-left.star-clickable {
    margin-left: 33% !important;
}
}
@media only screen and (max-width: 749px) {
.yotpo-bottomline.pull-left.star-clickable {
    margin-left: 25% !important;
}
}

Thank You.

boundlove
Excursionist
32 1 5

Thank you SO much! I've been losing sleep over this aha!