Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1099755

    Hi there,
    is there a possibility to add an image zoom to a picture in the advanced layout builder?
    Thank you.
    Best,
    Harry

    #1099776

    Hey gharry79,
    This is not built in, but it can be achieved with css, an example is:

    .item:hover img {
      -moz-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }

    it is basically the same rule for the top 3 browsers, and you can adjust the “1.1” to suit.
    If you would like help making this work for you, please include an admin login in the Private Content area, and a link to the page

    Best regards,
    Mike

    #1099782

    Hi Mike,
    thanks for the fast reply.
    I want this zoom function only on some pictures. Are there no Plugins for that? WP Image zoom is nice, but this works only in the classic editor.
    Best,
    Harry

    #1099840

    Hi,
    Sorry, I don’t know of a plugin for this. But you could add a custom class to all of the images you want the above css to work on.

    Best regards,
    Mike

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