Struggling to find the right layout for displaying products on my store's home page.
<div class="row">
@foreach($produts as $product) //this is the syntax of my templating engine
<div class="col-md-3">
</div>
@endforeach
</div>
The current issue I'm facing is that with col-md-3, the products appear too big and with col-md-2, they appear too small. To resolve this, I want to divide it into 5 columns. The discrepancy in size breaks the design significantly. Using class="col" doesn't work for me as I am adding multiple products programmatically causing them to split in several lines. It would be ideal if Bootstrap had 24 columns instead of 12. Is there a Bootstrap solution to achieve this or will I have to resort to pure CSS?