Tagged: featured image, Lightbox, overlay, Post thumbnail
Hi,
how can I delete this “lightbox” effect on all post thumbnail images?
Example:
The image should
– not open in a lightbox and
– should have no overlay.
How can I achieve this please?
Thank you.
Hey Chris!
For the ligthbox effect, you have when you insert a port, to disable the link when adding it.
That way, there will be no lightbox.
Regarding the overlay, please add to your CSS
.avia_transform a .image-overlay { display:none !important; }
Let us know if that fixes the issue for you
Best regards,
Basilis
Hi,
I don’t mean ANY image inserted into a post, I mean the “featured” image, the post thumbnail, which should not open in lightbox when viewing a post.
Normal images in a post should certainly open in a lightbox.
Hey!
Thank you for the info. You can add this in the Quick CSS field:
.big-preview a {
pointer-events: none;
}
Cheers!
Ismael
Works fine, thank you!