Hello,
On mobile, I would like less padding around my photos and description, as well as the “you may also like” section, how am I able to do this?
Thank you,
Ella.
Hello,
On mobile, I would like less padding around my photos and description, as well as the “you may also like” section, how am I able to do this?
Thank you,
Ella.
Hi,
Hope this will help
Use css to reduce padding
CSS code example
@media screen and (max-width: 768px) {
.product__media-wrapper,
.product__info-wrapper,
.product-recommendations {
padding: 10px !important;
}
}