I have a setup a gallery page that works just fine but I have one issue. When the gallery image is clicked it opens up a lightbox, that is great. When the gallery item title is clicked it goes to a page showing the cropped gallery image.
1) I need to know if it is possible to disable the link in all the gallery image item titles so that the only option is the lightbox image. This is my preferred option.
or
2) I need to know how to change it so that the full image is being displayed on the gallery item page.
Thanks in advance
Hey Chris!
Try adding this code to the Quick CSS:
.grid-entry-title a {
pointer-events: none;
}
Cheers!
Josue
That worked! Thank you.