I just plugged this in and it worked just fine:
PHP Code:
if ($GLOBALS['forumid'] == 4)
$template_hook['headinclude_bottom_css'] .= '<link rel="stylesheet" type="text/css" href="'.$vbcsspath.'additional2.css"" />';
And this works just fine in the FORUMDISPLAY template:
HTML Code:
<vb:if condition="$forumid == 4">
<style type="text/css">
html {background: pink;}
</style>
</vb:if>