I have quark ecommerce in use. Problem is that in shop page there is two product in one row.
I would like to have three product in one row. Any change to have css for that?
Thanks
ul.products li.product {
width: 33%;
}
// Change number or products per row to 2
add_filter('loop_shop_columns', 'quark_loop_columns');
if (!function_exists('quark_loop_columns')) {
function quark_loop_columns() {
return 2; // 2 products per row
}
}