0
I have the website MK Graphics where in the part of product category, specifically in Banners and also in Promotions the disposal of the products in Grid is with problem, one or another product appears alone in a certain line, and should continue the standard of 3 products. This can be seen at this link.
And the problem specifically in this image.
I tried using css:
.row, [class*='col-'] {
display: inline;
}
But it didn’t work, and the strange thing is that the problem only appears in some categories.
I tested on Chrome version 51.0.2704.103 and Firefox.
<div class="product-layout product-grid col-Md-4 col-Xs-6"></div> Bootstrap uses minimum widths for your grid, so you don’t need to declare columns of the same width. You only need to declare the smallest until certain resolution and so on.
– Ricardo Mota
http://getbootstrap.com/css/#grid
– Ricardo Mota