This is what I'd do.....
put in a template_hook in FORUMDISPLAY where you want this stuff to appear:
HTML Code:
$template_hook[forumdisplay_notice]
Then, create a plugin using the 'forumdisplay_start' hook location:
PHP Code:
if ($forumid == '2') {
eval('$template_hook[forumdisplay_notice] .= "<table><tr><td>Your HTML here - remember if you have link you need to escape it <a href=\"yourlink.php\">Your Link</a></td></tr></table>";');
}
if ($forumid == '7') {
eval('$template_hook[forumdisplay_notice] .= "<table><tr><td>Your HTML here - remember if you have link you need to escape it <a href=\"yourlink.php\">Your Link</a></td></tr></table>";');
}
if ($forumid == '8') {
eval('$template_hook[forumdisplay_notice] .= "<table><tr><td>Your HTML here - remember if you have link you need to escape it <a href=\"yourlink.php\">Your Link</a></td></tr></table>";');
}
You'll need to pretty that up, but that is how I'd go about it. Actually, if you wanted to do it prettier, your eval a template, but you can go look into that in the articles forum (read up on hooks).
I tested that exact code, only with forumids I use, and it works (but I'd change it to look nicer).