Hi,
I’ve attempted to disable the lightbox overlay by using the following code:
.no-pointer-services .image-overlay.overlay-type-extern {
pointer-events: none !important;
}
no-pointer-services is the custom class
Unfortunately, this didn’t work. I would love some help in troubleshooting this. You can see this at the 5 columns on the homepage
Hi slui!
Please try the following
.no-pointer-services .image-overlay.overlay-type-extern {
display: none !important;
}
Let us know if that worked out!
Regards,
Basilis
Hi Basilis,
I can still click on the image and have it take me to a different page. I want to disable it completely. This is the code that is currently active:
.no-pointer-services .image-overlay.overlay-type-extern {
pointer-events: none !important;
display: none !important;
}
Hi!
Please use following code instead
.page-id-1029 .grid-entry .inner-entry {
pointer-events: none!important;
}
Best regards,
Yigit
Hi,
Thanks. Can you please provide me the process that you used to find the page-id along with grid entry and inner entry? This code is very different than what was shown above.
sl
Hi!
You can use the google inspector or the firebug plugin to get the correct css selectors.
https://developer.chrome.com/devtools/docs/dom-and-styles
http://sixrevisions.com/tools/firebug-guide-web-designers/
You can find the page id in the body tag’s class attribute.
Best regards,
Ismael