Archived topic
images of equal size in image gallery
3 replies · Started by christian suarez on October 30, 2019
Viewing posts 1–4 of 4
when I create a gallery of images the images are left with their original dimensions and they are all of different sizes in the gallery ...
How can I make all images look the same size?
Thank you
Hi there,
ideally best to upload images that are already cropped to the same size/aspect ratio - but you can use this CSS to 'crop' them:
.gallery-item img {
height: 200px;
-o-object-fit: cover;
object-fit: cover;
}
It worked perfect, thank you very much!
You're welcome
This archived topic is closed to new replies.