Hello, I tried some css codes to get rid of the white spacing for the product image on phone
nothing worked
Can you please provide help
my website link:
Hello, I tried some css codes to get rid of the white spacing for the product image on phone
nothing worked
Can you please provide help
my website link:
Hi @AhmedGhaziii ,
You can follow the instruction below:
@media (max-width: 480px) {
.product-container .product__images {
margin: 0 !important;
width: 100% !important;
}
.product-container .product_gallery {
width: calc(100% + 20px);
margin-left: -10px;
}
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Worked perfectly !
Thank you !!