Please open the file /wp-content/themes/dante/swift-framework/page-builder/builder/shortcodes/team-carousel.php
.
From line 58, you will see the column control output, it looks like this:
if ($width == "1/4") {
$columns = 1;
} else if ($width == "1/2") {
$columns = 2;
} else if ($width == "3/4") {
$columns = 3;
} else {
$columns = 4;
}
If you want your fullwidth team carousel to have five columns please update to this:
if ($width == "1/4") {
$columns = 1;
} else if ($width == "1/2") {
$columns = 2;
} else if ($width == "3/4") {
$columns = 3;
} else {
$columns = 5;
}
Thanks.