Hey Kris.
I don't mind making a quick script to do this for you (If you know scripting, it's really rather easy), but you'll have to make some very slight changes to the Advanced Layout Options.
If you're up for that, I can go ahead and do it for you.
Let me know.
First, Add the following inside the <HEAD> tag at the top of the Html Layout page:
<Script language="Javascript">
function Page_OnLoad() {
var sPage = window.location.href
if (sPage.indexOf('forum.php') != -1 || sPage.indexOf('viewthread.php') != -1) {
document.getElementById('TdRightMenu').style.display = 'none';
}
}
</Script>=========================================================
Next add the following to your <Body> tag near the top of the page.
<Body onload="Page_OnLoad()">
=========================================================
Finally, find the below code, and add the text marked in Red.
<center>
<span class=copyright>
Content of this site is © 2007 Themis unless otherwise stated<br>
Part of the <a href="http://www.dkpsystem.com" target=_blank
KPSystem.com</a> Network.<br>
© 2001-2007 <a href="http://www.sigma-star.com" target=_blank>Sigma Star Systems</a>. All Rights Reserved.
</span>
</center>
</td>
<td
id="TdRightMenu" valign=top width=167 align=left style='width:167px'>
=========================================================
Note, that the Copyright info is actually represented by a PHP tag called something like <!--System:Copyright-->. When you find that, it should point you in the proper direction. Without being able to see your layout sheet I can't tell you for sure.
Good Luck!