I need the review widget closer to the button and i would like the length of the first button to be almost full, and to make the review widget the same size as the button. Also how do i make it so just the review part is only viewed on mobile.
if you want to reduce the gap between the review bar and shop now button, select the review widget and find custom css section and paste the following code:
@media only screen and (max-width: 750px) {
#shopify-section-template--19892489224459__1721249464e428490b{
margin-top: -20px;
padding-inline: var(--container-gutter);
}
}
#shopify-section-template--19892489224459__1721249464e428490b{
margin-top: -30px;
padding-inline: var(--container-gutter);
}
if you need to hide the review bar on devices other than mobile use this css code:
@media only screen and (min-width: 768px) {
#shopify-section-template--19892489224459__1721249464e428490b{
display:none;
}
}