Go to cardinal/swift-framework/page-builder/shortcodes/team.php and edit lines 62 to 78:
if ($item_columns == "1") {
$item_class = 'col-sm-12';
} else if ($item_columns == "2") {
$image_width = 540;
$image_height = 540;
$item_class = 'col-sm-6';
} else if ($item_columns == "3") {
$image_width = 360;
$image_height = 360;
$item_class = 'col-sm-4';
} else if ($item_columns == "5") {
$image_width = 360;
$image_height = 360;
$item_class = 'col-sm-sf-5';
} else {
$item_class = 'col-sm-3';
}
you can change the heights, but it’s best to leave the widths
– Kyle