Buy me a coffee

Product Thumbnails to 2 columns

Use these codes to the Custom CSS box

Desktop Only

/* Desktop Only */
@media screen and (min-width:992px) {
.ProductItem-gallery-slides {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 5px 5px;
}
.ProductItem-gallery-slides:before {
    display: none;
}
}

Product Thumbnails To 2 Columns 01 Min

All devices

/* All devices */
.ProductItem-gallery-slides {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 5px 5px;
}
.ProductItem-gallery-slides:before {
    display: none;
}

Product Thumbnails To 2 Columns 02 Min

Result 

Product Thumbnails To 2 Columns 03 Min