Okay
  Public Ticket #1315201
Disable lightbox for images on phone
Closed

Comments

  • patty_rl started the conversation

    Hi,

    I’m trying to disable the popup image for mobile. Is this possible? I turned on lightbox but I only want it on bigger screens.

    Thanks

  • [deleted] replied

    Hi patty_rl,

    This is a customization question and support doesn't offer customization services as we wrote on our support homepage. I will try to help you this time though

    Please add the code below to your Wordpress dashboard > Custom CSS area:

    /* Disable portfolio item popup */
    @media (max-width: 768px) {
        .single-portfolio-holder .gallery .photo>a { 
            pointer-events: none !import;
        }
    }