Disable second image on hover

Hi All, another silly question, using the latest savor theme by Shopify and theres no option to disbale second image on hover on product/grid/carousel. Any advice?

Hi @DASCPA

let try to add this custom css code to your theme settings:

.product-card slideshow-slides slideshow-slide+slideshow-slide {
  display: none !important;
}

Hi @DASCPA ,

May I suggest to update code these steps:

  1. Go to Store Online-> theme → edit code

  1. Assets/base.css
  2. Add code below to end of file
.card-gallery .product-media-container + .product-media-container {
    display: none!important;
}