Show project thumbnail in thumbnail grid but lock it
-
Hey,
Is there any way I can show the project listed in the Project Thumbnail Grid but if you click on the thumbnail you wont go to the projects Site?
Thanks,
Tom -
Dear Tom
@grafseeger
The following code would target links within the thumbnail grid and disable them:
.thumb-collection a.thumb { pointer-events:none; }But did you wish to just disable a particular thumbnail? If you link to the Thumbnail you need disabled i can help with that ๐
Custom CSS (above code) can be added to your website via > Lay Options > Custom CSS & HTML. Or via > Customize > CSS.
Best wishes Tom & have a great day ๐
Richard
-
@Richard said in Show project thumbnail in thumbnail grid but lock it:
.thumb-collection a.thumb {
pointer-events:none;
}Hello,
Is it possible to combine this code while keeping the appearance of the titles on mouse hover?When I activate the event: none pointer, it suppresses the display of the title on hover.
Is there any other way to target?
Thanks a lot!
-
Dear @Antoine-dvc
This may help - need to test ๐
https://stackoverflow.com/questions/970388/jquery-disable-a-link
jQuery(".thumb").removeAttr('href');
Best wishes
Richard