Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #473424

    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

    #473426

    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

    #473505

    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;
    }

    #473788

    Hi!

    Please use following code instead

    .page-id-1029 .grid-entry .inner-entry {
      pointer-events: none!important;
    }

    Best regards,
    Yigit

    #473929

    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

    #474269

    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

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.