Blog

Tuesday, 23 November 2021 08:30

How to make Woocommerce mobile site 2 columns for products to show

Written by 

Go to Appearance > Customize > Additional CSS by pressing the blue Publish button;

ul.products li.product{

width: 46.411765%;

float: left; margin-right: 5.8823529412%;

}

ul.products li.product:nth-of-type( 2n ) {

margin-right: 0;

}

@media ( min-width: 768px ) {

ul.products li.product:nth-of-type( 2n )

{ margin-right: 5.8823529412%;

}

}

Read 3413 times Last modified on Tuesday, 23 November 2021 08:33