Hello @hyperdrive_boom,
Thanks for writing to us.
In case if you want to set the shop products in 2 columns on the mobile view as well. You need to override the default style for that you can use this custom CSS code under Pro —>Theme Option —>CSS.
@media(max-width:479.99px)
{
[class*=woocommerce] ul.products.columns-2 li.product, [class*=woocommerce] ul.products.columns-3 li.product, [class*=woocommerce] ul.products.columns-4 li.product {
width: 49%;
}
}
The purpose of providing the custom CSS to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.
Hope it helps.
Thanks