Hi, there
Can you tell me how to make the featured image in single blog post view non clickable? I managed to remove the hover effect, but still when you click it it opens the big version!
http://www.ilkoallexandroff.com/strobist-photoshoot-typhoon/
Cheers,
Ilko
Hi Ilko!
Add this on your custom.css or Quick CSS to remove the image link on single post view:
.big-preview.multi-big .image-overlay, {
display: none !important;
cursor: default;
pointer-events: none;
}
.big-preview.multi-big {
cursor: default;
pointer-events: none;
}
Regards,
Ismael