I would like these images to be square if possible rather than super tall.
1 Like
Happy to see you on our forum! Welcome @Kyle_Looney
We’ll have this idea in mind for the future updates! As for now, you can use this code in the Custom CSS field on the Style tab of your widget’s settings:
[class*='Carousel__CarouselOuter-sc'] {
height: 300px !important;
}
.eapp-photo-gallery-columns-main {
height: 300px !important;
}
@media (max-width: 500px) {
[class*='Carousel__CarouselOuter-sc'] {
height: 200px !important;
}
.eapp-photo-gallery-columns-main {
height: 200px !important;
}
}