OR you could cut it all out, by just doing this:
FIND:
Code:
if ($vent_vbadvanced) {
if ($vside == 0) { $width=$vba_style['portal_leftcolwidth']; }
if ($vside == 1) { $width=$vba_style['portal_rightcolwidth']; }
}
else {
$width=$vnoadvanced_width;
}
REPLACE WITH:
Code:
$width=$vnoadvanced_width;
Then set your width in the options at the bottom, where it states you aren't using vbadvanced.
Leaving the variable in there makes it easier for you to adjust without having to re-edit to style out your width needs.