Please help me to remove the product recommendation image top and bottom spacing marks in red border (this only happens on mobile view, desktop view is fine), i can’t get rid of it, when unclicked it appears to be transparent/ white color like the image beside, it result in so much spacing on the product recommendation area.
Hi @vanessaliew
Please add the following code to your theme.scss file:
@media screen and (max-width: 590px)
{
.product--wrapper {
margin-top: 0px;
margin-bottom: 5px;
}
}
That should do it! Let me know
1 Like
@JHKCreate thank you so much!
