Remove scrollbars, make images smaller?

Hey all! Wondering if anyone can help me. Is it possible to make these images smaller to remove the scrollbars without changing their aspect ratio? I tried with flexbox but I couldn’t make them smaller. The images are fetched from getty images with a script, so they’re not locally stored.

Thanks!

Peek 2022-02-27 11-31

Maybe try adding this to the “styling” section of your cards:

img {
max-height:250px;
width:auto;
}

3 Likes