Hey I would like to change the image size of the products on the home page. If you go to my home page and you scroll down to Popular Dog Products you will see products listed. I would like the images to be smaller and maybe even fit more on each row.
You guys gave me this code before and it worked but it works for the whole site. I just need it on the home page.
/Makes products 5 columns iPad and desktop/
@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;
}
}
/* 2 columns on phones */
@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;
}
}


