• improvibe

    (@improvibe)


    The images in the portfolio section have two buttons. One is to show the photo larger, and one is for a link associated to it. How can I remove the link button in order to leave it just with the enlarge button?

    I tried the following css code, but all it does is disable both buttons yet leave them visible.

    .port-link a{
    pointer-events: none;
    }

    Any suggestions? Thank you

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @improvibe,

    Thanks for reaching us,

    For removing the link please try adding this CSS inside WordPress Dashboard > Appearances > Customize > Additional CSS and check it once

    .port-link a:hover{
    background:none;
    }
    i.fa.fa-link{
    display: none;
    }
    .port-link a{
    border:none;
    }
    .port-link a:first-child{
    border: 1px solid #fff;
    }

    Let me know if this helps you or not and I will be back.

    Regards

Viewing 1 replies (of 1 total)
  • The topic ‘Remove link button from Portfolio images’ is closed to new replies.