Intex - You can change the width of the tables in the index template. Thanks for pointing out the broken URL for the mini-hack, I'll update the first post in just a second. As for the calendar thing, you should be able to fix that by looking for this code in your myvbindex.php file:
PHP Code:
if ($showcalendar) {
And replace that with:
PHP Code:
if ($showcalendar AND $bbuserinfo[bbshowcalendar]) {
If that doesn't work though let me know.
Bison - In online.php look for:
PHP Code:
case 'search':
$userinfo[where] = "Searching Forums";
break;
Right Above that Add:
PHP Code:
case 'home':
$userinfo[where] = "$hometitle <a href='/index.php?s=$session[sessionhash]'>Main Index</a>";
break;
Then look for:
Right Below that Add:
PHP Code:
case '/':
$userinfo[activity] = 'home';
break;