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

    Hello,
    I use the photografie theme of enfold (header on left sidebar):
    is there a way to disable the image “zooming” and “highlight” effect on portfolio mansory view?
    I’m talking about the effect that zooms in the picture when you hover over a picture.
    Preview:
    http://kriesi.at/themes/enfold-photography/portfolio/

    #386482

    Hi royaltask!

    Try adding this to your custom CSS.

    .av-masonry-item-with-image, .av-masonry-item-with-image * {
      transform: none !important;
    }

    Cheers!
    Elliott

    #386567

    Great theme, thank you for your time.
    It stops transforming the content box sizes when resizing the browser now, too. I just need not zooming while hoving.

    • This reply was modified 9 years, 2 months ago by royaltask.
    #387079

    Hi!

    Please use following code instead

    .avia_desktop .av-masonry-entry:hover .av-masonry-image-container {
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    transform: scale(1,1);
    }

    Best regards,
    Yigit

    #387134

    Thank you, this works now in all cases. Such a great support here. Thanks for the help!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘disable the image zooming and highlight effect on portfolio images’ is closed to new replies.