Okay
  Public Ticket #1288529
Portfolio Featured Image
Closed

Comments

  •  1
    aball1000 started the conversation

    Is it possible to add a mouseover and mouseout effect to these images?

  •  291
    Paul replied

    Hi there!

    It is possible but you would need to apply custom CSS with the ":hover" selector to the image elements. You can search on Google with the "css mouse hover effect" keywords for more information.

    Regards,
    Paul

  •  1
    aball1000 replied

    yes but can each portfolio item be differentiated in the CSS?

  •  291
    Paul replied

    Sure! You can use Chrome's Developer Tools to inspect the elements then you will know the class name for each item.

    For example, based on this screenshot: https://cl.ly/mI9L, you can create a rule like this for only first item:

    .port-item-75:hover {
        margin-top: -10px;
    }

    I hope it helps!