Okay
  Public Ticket #1168154
Hover zoom on gallery
Closed

Comments

  • Suzanne started the conversation

    Is there a way to make the images zoom even more upon hover on a gallery?

  •  2,744
    Andrew replied

    Hi Suzanne,

    Thank you for reaching out to us.

    Making the the images to zoom more is possible, but it will require much customization which is outside the scope of our item support. You can hire a developer for this or use a service like codeable.io

    Sorry for the inconvenience and hank you for your understanding.

    Best regards.

  • RichardHolt replied

    I would actually like them to zoom less. Perhaps this setting could be added in a future version?

  •  2,744
    Andrew replied

    Hi ,

    Could you try this CSS for increasing the zoom:

    .portfolio-items[data-ps="8"] .col:hover img {
        transform: scale(3.11) !important;
        -webkit-transform: scale(3.11) !important;
        -ms-transform:scale(3.11) !important;
    }
    

    If you want to reduce it you can reduce the 3.11 to a lower value.
    The default is 1.11. For example:

    .portfolio-items[data-ps="8"] .col:hover img {
        transform: scale(1.02) !important;
        -webkit-transform: scale(1.02) !important;
        -ms-transform:scale(1.02) !important;
    }
    

    Hope this helps.