Hi,
Does anyone know how to reduce the white space below the product image on mobile?
Thanks!
Hi,
Does anyone know how to reduce the white space below the product image on mobile?
Thanks!
Hello There,
Please share your store URL and password.
So that I will check and let you know the exact solution here.
Hi @tophammer ,
You can follow the instruction below:
@media (max-width: 749px) {
.product__media-gallery .slider,
.product__media-gallery .slider .product__media-item {
padding-bottom: 0 !important;
margin-bottom: 0 !important;
}
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Amazing, thanks so much!
@media screen and (max-width: 749px) {
.product__media-gallery .slider,
.product__media-gallery .slider .product__media-item {
padding-bottom: 0 !important;
margin-bottom: 0 !important;
}
}
I did exactly this, and nothing is happening… what Am I missing ?