Hello,
I’m trying to add some extra margin space between columns on the products grid from WooCommerce.
Since I’m not familiar with the styles used in Enfold, how can I increase the space between columns for each breakpoint of the responsive design?
I’ve already created this rule:
.shop_columns_3 .products .product {
margin: 0 7% 7% 0;
width: 28.6%;
}
Thanks,
Adam
Hi yoeladam!
Please add following code to Quick CSS as well
@media only screen and (max-width: 767px) {
.responsive #top #main .products .product {
margin: 0 8% 1% 0;
width: 42%;
}}
Cheers!
Yigit
Perfect! thank you for the CSS