On my gallery I have a number of different images, but I want them to be fix size rather than cropping when the screen changes size - is this possible.
Image 1. Shows images the correct size
Image 2. Screen changes size so the images are now cropped
Hi @marycrichton123 ,
Could you share your store url? I will help to check it for you.
Hi,
May I suggest to update code these steps:
- Go to Store Online-> theme → edit code
- Assets/styles.css
- Add code below to end of file
#section-id-template--17010114232486__gallery_67MbJh .gallery__image{
position: static!important;
}
#section-id-template--17010114232486__gallery_67MbJh .gallery__image picture {
display: block!important;
}
#section-id-template--17010114232486__gallery_67MbJh .gallery__item {
height: auto!important;
}