Is there a way to make the product grid responsive? Right now, it only allows me to pick a certain number of columns and I chose 4. This looks good on my desktop but it squeezes the products and doesn’t look good on my iPad. On mobile it is fine because it changes to 1 column. Can it either be made responsive or have the column number change based on screen width?
Hey krakers2015,
Could you provide us with a link to the site in question so that we can take a closer look please?
Best regards,
Rikard
Here is a link to my product overview page
Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 768px) and (min-width: 481px) {
div .products .product {
width: 49%;
}}
Regards,
Yigit
perfect! Thank you :)