I would like to completely disable zoom on product images on mobile version only on DAWN theme 10.0
I do not need to hide the magnifier icon. I need to disable the zoom on mobile only.
Thank you so much
website: 1989streetwear.com
I would like to completely disable zoom on product images on mobile version only on DAWN theme 10.0
I do not need to hide the magnifier icon. I need to disable the zoom on mobile only.
Thank you so much
website: 1989streetwear.com
@1989streetwear - add this css to the very end of your base.css file and check
@media screen and (max-width:749px){
.product-media-modal[open]{display:none; visibility: hidden;}
}
Thank you @suyash1 !
I also added the code below to hide the magnifier icon on the top left of the product image:
.product__media-icon{
display: none !important;
}