Hi,
I would like to display multiple rows based on div width.
Something like that:
<div style="width: 100%">
<div style="width: 300px"><img src="img1.jpg"><br />Image name 1</div>
<div style="width: 300px"><img src="img2.jpg"><br />Image name 2</div>
<div style="width: 300px"><img src="img3.jpg"><br />Image name 3</div>
<div style="width: 300px"><img src="img4.jpg"><br />Image name 4</div>
<div style="width: 300px"><img src="img5.jpg"><br />Image name 5</div>
</div>
So if layout width is 600px it will display only 2 images per row, if 900px - 3 images per row.
Anyone have any suggestion for me?