Kos
posted this
10 March 2018
Hi, you can disable this with easy CSS:
just add the custom css code like this:
.cloud-zoom-big, .mousetrap {display:none!important;}
.cloud-zoom {
pointer-events: none;
cursor: default;
text-decoration:none;
color:black;}
.cloud-zoom-big and .mousetrap are the elements when you Mouse over the image and it's zooms in.
.cloud-zoom - is a href image class, so pointer-events: none; will make it not clickable.
Hi, you can disable this with easy CSS:
just add the custom css code like this:
.cloud-zoom-big, .mousetrap {display:none!important;}
.cloud-zoom {
pointer-events: none;
cursor: default;
text-decoration:none;
color:black;}
.cloud-zoom-big and .mousetrap are the elements when you Mouse over the image and it's zooms in.
.cloud-zoom - is a href image class, so pointer-events: none; will make it not clickable.