Hi,
You can do that with the code I posted above.
You just need to change the percentage values for the width and match the column class .col-sm-3
with what is being used on your page.
So, given you example for 5 tiles for that media query you use this:
@media only screen and (min-width:960px) {
.spb-column-container.col-sm-3 {
width: 20%!important;
}
}
This however will not work if you have less than 5 tiles within the parent row. Each Row will make a new line.
Thanks,
David.