Hey! I need some help on how to remove that zoom button on the top left of the product picture. I am using sense 2.0 (my website is mobile optimized).
Here is my website link: https://theaircat.com/products/aircat
Thanks in advance!
Hey! I need some help on how to remove that zoom button on the top left of the product picture. I am using sense 2.0 (my website is mobile optimized).
Here is my website link: https://theaircat.com/products/aircat
Thanks in advance!
Hi @massoudghalib1 ,
I just that the button only shows on hover. Anyway, I hide the code by follow the instructions below.
modal-opener.product__media-icon {
display: none !important
}
Btw, you can still open the modal (zoom image) by clicking the image
You missed ; after !important ![]()
You actually do not need a semi-colon if you only have one or the last css. It is still going to work
I didn’t know, I’m sorry ![]()
Hi, you can do that by using this code to hide that button on mobile only
@media only screen and (max-width: 600px) {
.product__modal-opener:hover .product__media-icon {
display: none !important;
}
}
Hey! Tried doing this but didnt seem to work!
Hey! I have to add this under base.css right?
If so, I did it but still doesn’t seem to disappear.
Thanks in advance