Hello,
I just updated my staging site to the newest X theme and for some reason on mobile, it is no longer putting products in rows of two. You have given me customer code before but it does not look like it’s working anymore.
You might have to type it in twice. For some reason, the box pops up 2
This is what I was given last time
/* Make 5 column product items in desktops, ipad */
@media(min-width: 768px){
.x-content-band .woocommerce.columns-5 li.product {
width: 18.4%;
margin-right: 2%;
}
.x-content-band .woocommerce.columns-5 li.product.last {
margin-right: 0;
}
}
/* Make 2 column product items in the Phone and smaller screens */
@media(min-width: 768px){
.x-content-band .woocommerce.columns-5 li.product {
width: 18.4%;
margin-right: 2%;
}
.x-content-band .woocommerce.columns-5 li.product.last {
margin-right: 0;
}
}
@media(max-width: 767px){
.x-content-band .woocommerce.columns-5 li.product {
width: 49%;
margin-right: 2%;
}
.x-content-band .woocommerce.columns-5 li.product:nth-child(2n) {
margin-right: 0;
}
.x-content-band .woocommerce li.product.first {
clear: none;
}
}