How can show second image on hover on mobile

Hi in my website on desktop, it shows second image on hover when the mouse is on the product picture, but on mobile it doesn’t, how can I do the same on mobile?

URL: https://matibrnd.com/

Pass: biangu

Hi @MT27 ,

Follow these steps:
Step 1: Access Shopify Admin
Step 2: Access Online Store => Access Edit code

Step 3: Find the base.css or global.css file

![view - 2024-02-06T092232.586.png|1910x939](upload://tJ5za6R8S7ptTw8c0aWlUreB4wm.png) ![view - 2024-02-06T092347.825.png|1910x939](upload://tJ5za6R8S7ptTw8c0aWlUreB4wm.png)

Insert this CSS snippet into your CSS file:

@media only screen and (max-width: 989px) {
    .card-wrapper:hover .media.media--hover-effect>img:first-child:not(:only-child) {
      opacity: 0 !important;
    }
    .card-wrapper:hover .media.media--hover-effect > img + img {
     opacity: 1 !important;
    }
} 

Hope it helps @MT27