Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1490940

    Hello, I would like to disable lightbox on mobile only. Has anyone been able to do this?

    #1491006

    Does anyone have insight on this?

    #1491089

    Hi,

    Thank you for the inquiry.

    You can use the following css code to disable all lightbox elements on smaller screens.

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
      .lightbox,
      .lightbox a,
      .lightbox img {
        pointer-events: none !important;
      }
    }

    Best regards,
    Ismael

    #1491122

    Awesome! Thank you @ismael

    #1491133

    Hi,

    Great, I’m glad that Ismael could help you out. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Disable Lightbox on mobile’ is closed to new replies.