Disable clicking on album pictures

imthebest

Well-known member
When viewing an album picture (gallery/picture_name.123) I can click on the photo and a Lightbox starts. I want to make the photo unclickable so no Lightbox at all.

How I can do this, please?
 
What do I need to remove? The entire code snippet or just the red "Image"?

By the way I tried both ways and the end result is that when I hover my mouse over the album picture the mouse changes to a hand... it should stay as a regular cursor, not a hand.

Maybe I'm doing something wrong?
 
Just the word Image.

To change the cursor. EXTRA.css:
Code:
.hasJs .mediaContainer .imageContainer img
{
    cursor: default!important;
}
 
Top Bottom