https://charmente.com/products/theultimatecosmeticbag
The white space is not part of the image that I uploaded, how do I get rid of it?
A user is experiencing unwanted white space on their product page that isn’t part of the uploaded product image.
Solution Provided:
Another community member offered CSS code to resolve the issue:
@media only screen and (max-width: 749px) {
.product-media-container .media-container {
padding-top: 70% !important;
}
}
The helper included a screenshot showing the expected result after applying this fix. The issue appears to be related to responsive padding on mobile viewports (screens under 749px wide).
https://charmente.com/products/theultimatecosmeticbag
The white space is not part of the image that I uploaded, how do I get rid of it?
Hi @Simon159
Check this one.
@media only screen and (max-width: 749px){
.product-media-container .media {
padding-top: 70% !important;
}
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!