- 41
Has anyone any good tips on how to make it so the pavilion theme will show 4 products per row instead of 3 on normal category view ?
@media (min-width: 769px) {
.item-box {
width: 23.5%;
}
.item-box:nth-child(3n+1) {
clear: none;
margin-left: 2%;
}
.item-box:nth-child(4n+1) {
clear: both;
margin-left: 0;
}
}
@media (min-width: 769px) {
.item-box {
width: 23.5%;
}
.item-box:nth-child(3n+1) {
clear: none;
margin-left: 2%;
}
.item-box:nth-child(4n+1) {
clear: both;
margin-left: 0;
}
}