I want to show products on product category pages in one column when mobile. But it shows 2 columns and it may cause apperance problems I tried below CSS code to do that but it did not work:
@media only screen and (max-width:460px) {
.woocommerce[class*=columns-] ul.products li.product {
width: 100%;
}
}
Where I want is that;
http://www.e-tamirci.com/tamirci-bul/
Thank you for your helps.
I have found the solution based on answers;
@media all and (max-width:768px){
.woocommerce ul.products li.col-3.product,
.woocommerce-page ul.products li.col-3.product{
width: 98%;
margin:1%;
}
}
Thank you.