@MeganR You can try adding this code snippet under Utilities > Website Tools > Custom CSS.Â
The following code will create a hover effect only on the images displayed on the shop page.
section[data-section-id="665b43987735314d47226f23"] {
.image-block-outer-wrapper {
transition: top ease 0.7s;
}
.image-block-outer-wrapper:hover {
position: relative !important;
top: -8px;
}
}
Prior to testing this code, please ensure that any existing code related to image hover effects has been removed. Let me know how it goes. Thanks!