Okay
  Public Ticket #865847
Portfotolio Images | Lightbox disabled issues
Closed

Comments

  • Shane started the conversation

    Hello Kalium,

    I am using the centered column portfolio with a featured image at the top and title content below. Lightbox is disabled for portfolio images but the hand icon still appears when hovering over the featured image. I can disable the cursor using the following:

    .lightbox-disabled .nivo {
        cursor: none;
        pointer-events: none;
        -webkit-user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    but this also precludes the use of other features in portfolio like the slider in comparison images. So, how can I remove that hovering icon from the featured image?

    Thanks,

    Shane 

  • [deleted] replied

    Hi Shane,

    Can you please add the code below to Custom CSS

    .portfolio-featured-image .nivo {
    cursor: default !important;
    }
  • Shane replied

    Great. Thanks for this.

  •  1,558
    Laborator replied

    You're welcome Shane :)

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  • Shane replied

    Just a small note. The applicable code should address pointer-events. 

    .portfolio-featured-image .nivo {
        pointer-events: none !important;
    }