Hi,
1- You need to edit portfolio.php file at /flexform/includes/page-builder/composer/lib/shortcodes/.
Find this code:-
} else if ($columns == "3") {
if ($sidebars == "both-sidebars") {
$item_class = "span2 ";
} else if ($sidebars == "one-sidebar") {
$item_class = "span-third ";
} else {
$item_class = "span4 ";
}
Change with:-
} else if ($columns == "3") {
if ($sidebars == "both-sidebars") {
$item_class = "span2 ";
} else if ($sidebars == "one-sidebar") {
$item_class = "span-third ";
} else {
$item_class = "span2 ";
}
Now create portfolio one with column 4 and portfolio two with column 3. portfolio two will display as column 6.
Thanks
Mohammad