This topic has 2 replies, 2 voices, and was last updated 7 years, 1 months ago ago by Olga Barlow
Hi There
Is it possible to have my categories showcased 2 per row instead of 3 per row? Please refer here: http://testenviro.co.za/trophies/product-category/trophies/
I would like to maintain the 3 product per row layout on the product pages however. Shown here:
http://testenviro.co.za/trophies/product-category/trophies/r29-r100/
Thank you.
Hello,
There is no such option by default. But you may try the following custom CSS (Theme Options > Styling > Custom CSS)
.category-grid.columns-3:nth-child(2n+1) {
clear: both !important;
}
.category-grid.product-category {
width: 50%;
}
@media only screen and (min-width: 768px){
.category-grid.columns-3:nth-child(3n+1) {
clear: none !important;
}
}
Regards
You must be logged in to reply to this topic.Log in/Sign up