0

I'm using laravel to display information about products that people are selling on the home page. Each product contains a small image and other attributes. At the moment each product listed is on an new row meaning a user has to scroll all the way up and down to view them. How can I display it in a 3x3 grid?

Hamish Gibson
  • 257
  • 3
  • 16
  • set the css atrributes of said class.. `float: left; width:33.3%` may need to adjust padding and margins to make it fit, could even lower the width a little – Dale Aug 10 '18 at 13:27

1 Answers1

1

Possibly copy of :

Display 3 items per row - while loop - php/mysql

Loop row in bootstrap every 3 columns

Look into links above, will gonna help you.

hu7sy
  • 983
  • 1
  • 13
  • 47