How do I disable show second image on the spark theme? Thanks!
1 Like
Hi @ahawks2001 ,
Can you include the URL of your store? I need to take a look at the store page before I can offer any solution. Thanks
Hi @ahawks2001 ,
Go to Assets > theme.css and paste this at the bottom of the file:
.product-item__image--one{
z-index: 2 !important;
opacity: 1 !important;
}
.product-item__image--two{
z-index: 1 !important;
opacity: 0 !important;
}
Hope it helps!