Quote:
Originally Posted by fosman
Hey
How can I move the shoutbox above the navbar?
Thx
|
Edit your navbar template and add $Shoutbox at the very beginning.
You probably also have to remove the following code from the "vBShout [Template Alteration]" plugin (at the very bottom):
Code:
switch ($vbulletin->options['shout_position'])
{
case 1:
$Position = '<!-- what\'s going on box -->';
break;
case 2:
$Position = '<!-- end what\'s going on box -->';
break;
case 4:
$Position = '<!-- main -->';
break;
default:
$Position = '$navbar';
break;
}
$vbulletin->templatecache['FORUMHOME'] = str_replace($Position, $Position . ' $Shoutbox', $vbulletin->templatecache['FORUMHOME']);