Hello, I am trying to show 2 columns of products on my homepage when in mobile view. Right now it is only 1 column wide. I tried using the following code, but it didn’t work.
@media only screen and (max-width: 479px) {
.woocommerce.archive .products .product {
width: 50%;
float: left;
}
}
Thanks!
Rachel