Hi
Yes the images are resized. To change the values, go to plugins/swift-framework/includes/page-builder/shortcodes/team.php and find this:
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';
}
– Kyle