Is there a way to use jquery/css to resize my gallery thumbnails relative to the screen size? I want the image gallery to fit all screen sizes.
For example, if the screen is 1280x800, the gallery should fit perfectly. However, if the screen is 1024x768, I still want the images to fit that screen as well.
Currently, my images are displayed like this:
<div class="imageWrapper">
<img src="1.jpg" id="1">
<img src="2.jpg" id="3">
</div>
I have up to 70 images with 10 images per row and 7 images per column. When resizing the window, I want the images to scale down accordingly based on the window size.