This topic has 10 replies, 2 voices, and was last updated 4 years, 8 months ago ago by Rose Tyler
How to display 3 products in row on products page instead of 1?
Hello,
Customize > WooCommerce > Product Catalog > Products per row.
If this is not what you are looking for, describe the request in more detail.
Regards
Yeah, sorry, forget to say about screen.
I need to change products per row on Mobile screens
Hello,
Please provide URL of your shop page.
Regards
Website is still in developing, but i added some products just for example
Hello,
Try to add the next code in Theme Options > Custom CSS > Custom CSS for mobile:
.products-loop .product {
width: 33.33% !important;
}
.products-loop .product:nth-child(2n+1) {
clear: none !important;
}
.products-loop .product:nth-child(3n+1) {
clear: both !important;
}
Regards
Works like a charm, thanks! Turned it off on categories page, cause it broke that page.
How I can make them display in a row too?
Please try this code:
.products-loop .product-category {
width: 33.33% !important;
display: inline-block;
min-height: 180px;
margin-bottom: 0 !important;
}
.products-loop .categories-mask h4 {
font-size: 16px;
}
.products-loop .categories-mask span, .categories-mask span.more {
font-size: 10px;
}
.products-loop .categories-mask {
padding: 10px;
}
Regards
Now it`s working perfectly, thanks!
You’re welcome!
Regards
You must be logged in to reply to this topic.Log in/Sign up