Okay
  Public Ticket #229546
Portfolio Removing Hover Zoom Effect
Closed

Comments

  •  2
    Jake started the conversation

    I'm using style-3 for the portfolio hover effect, and I was wondering how I might disable the zoom effect on the hover event. Ideally, I'm trying to make the portfolio image have no filter at all until roll over in which I'd like to change to an transparent white filter (instead of the black now).

  •  2
    Jake replied

    This may be poor syntax, but it worked for me.. Anyone looking to remove the zoom effect on Style-3 Portfolio just add this to your Custom CSS:

    .portfolio-items .col .work-item img {
        -webkit-transform: none!important;
    }
    
    .portfolio-items .col .work-item img:hover {
        -webkit-transform: none!important;
    }