In the HTML code below, I have a listing of images within a container
.
I'd like to limit the display of these images to a table of 2 rows and 3 columns and page to look better.
<div class="container">
<a href="#"><img src="img.png"></a>
<a href="#"><img src="img.png"></a>
<a href="#"><img src="img.png"></a>
<a href="#"><img src="img.png"></a>
<a href="#"><img src="img.png"></a>
<a href="#"><img src="img.png"></a>
<a href="#"><img src="img.png"></a>
<a href="#"><img src="img.png"></a>
<a href="#"><img src="img.png"></a>
<a href="#"><img src="img.png"></a>
<a href="#"><img src="img.png"></a>
<a href="#"><img src="img.png"></a>
</div>
<div class="pagination-douts">
<span class="page"></span>
<span class="page actie"></span>
</div>
I've tried using slick and the jQuery Cycle2 , but they display the images linearly, whether horizontal or vertical.
Can anyone give me a hand?
EDIT:
An outline of what it would be: JSFIDDLE