Just a bit of info, if you wish to have your navbits reflect your vB title instead of vB title > Portal.
Open portal.php:
Find
PHP Code:
$navbits = array();
$navbits[$parent] = 'Portal';
$navbits = construct_navbits($navbits);
Remove it completely, save and upload.
This will add a breadcrumb when viewing your forum.
Next open index.php (if you renamed opened the renamed file)
Find:
PHP Code:
eval('$navbar = "' . fetch_template('navbar') . '";');
Above add:
PHP Code:
$navbits = array();
$navbits[$parent] = 'Forum';
$navbits = construct_navbits($navbits);
Edit 'Forum' to whatever you wish.
Cheers
Steve