I have some code to output images in Wordpress like this...
<div class="col-md-2">
<?php $image = get_field('artist_photo');
if( !empty($image) ):
// thumbnail
$size = 'medium';
$thumb = $image['sizes'][ $size ];
?>
<img src="<?php echo $thumb; ?>" alt="<?php echo $alt; ?>" class="img-responsive" />
</div>
<?php endif; ?>
The problem is, all of the images have different heights (based on their proportions at original upload}.
Is it possible to make them have a uniform height whilst remaining responsive?