Add this to the top of your headers if you don't have it:
<script src="/jquery.js"></script>
Headers:
<script>
var portal = new Array()
portal[portal.length] = ["TITLE","CONTENT"]
/*DO NOT EDIT PAST HERE*/
document.write('<table align="center" valign="top"><tr><td valign="top" id="td_width"><span id="SMF_Portal">')
for(a=0;a<portal.length;a++){document.write('<div class="catbg">'+portal[a][0]+'</div><div class="windowbg" border="1">'+portal[a][1]+'</div>')};
//Created by Agent Moose (smcodes.smfforfree3.com)
document.write('</span></td><td height="100%" valign="top" id="td_width2">')
if(location.href.match("action=") || location.href.match("board,") || location.href.match("topic,")){
$("td#td_width2").attr("width","1000");
$("span#SMF_Portal").hide();
}else{
$("td#td_width2").attr("width","800");
$("td#td_width").attr("width","150");
$("span#SMF_Portal").show();
}
</script>
Here is v1 of this portal code. It adds boxes to the Left of the portal, which means, it will only show on the portal.
TITLE=The Title of the Box
CONTENT=The Text/HTML that will be in the box.
If you want to add more boxes, add more of these lines:
portal[portal.length] = ["TITLE","CONTENT"]