This topic has 2 replies, 2 voices, and was last updated 5 years, 4 months ago ago by Olga Barlow
Hi Olga,
On this page https://www.8theme.com/demo/html/mango/shop.html I would like to display my products into 3 columns, how to proceed?
Regards,
Bruno
Hello,
Could you, please, create new topic for the new questions that are not related to the first one? It will help us to avoid misunderstanding for our support.
If you want to display products into 3 columns:
1) Add the new class “grid-col-3” for the row where all the products are located https://prnt.sc/ofpakl
2) Change the class for the product columns, use “col-md-4” instead of “col-md-3” https://prnt.sc/ofpakl
3) Add the following CSS code to your custom CSS
@media (min-width: 767px){
.grid-col-3 .shop-grid-item:nth-child(4n+1) {
clear: none;
}
.grid-col-3 .shop-grid-item:nth-child(3n+1){
clear:both;
}
}
Regards
You must be logged in to reply to this topic.Log in/Sign up