Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #558118

    Hey there,

    is it possible to use the zoom-effect on pictures (when you hover over them) instead of that icon-popup?

    See the attached Links and Credentials (site is locked for public).

    Thank you for the help!

    Best regards
    Chris

    #559021

    Hey Chris!

    Thank you for using Enfold.

    Yes, that’s quite possible. Please use this in the Quick CSS field:

    .big-preview img {
        -webkit-transition: all 1.7s cubic-bezier(0.230, 1.000, 0.320, 1.000);
        transition: all 1.7s cubic-bezier(0.230, 1.000, 0.320, 1.000);
    }
    
    .big-preview:hover img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    
    .big-preview .image-overlay {
        display: none !important;
    }

    Cheers!
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.