Hello,
I would like to display 2 products per row in the shop when viewing via mobile devices (rather than just one product per row). In an attempt to achieve this, I’ve added the following code to my custom css file:
@media only screen and (max-width: 480px) { .products-grid .product {width: 50% !important; } }
When the shop page is loading, it displays 2 products per row, as required. However, once the page finishes loading, the layout switches to display just one product per row (although each product still only occupies 50% of the row).
Any idea what might be causing this issue?
