Please login or register. Welcome to the Studio, guest!


Quick Links:


newBookmarkLockedFalling

Chris

Chris Avatar

******
Head Coder

19,519


June 2005
<script type="text/Javascript">
// Remove Info Center Sections by Chris
// Do not redistribute without permission of the creator

var secs = /(Today's Totals|Todays Calendar Events)/i;


// Don't edit
var aTD = document.getElementsByTagName("TD");
if(!location.href.match(/action=/i) || location.href.match(/action=home/i)){
for(a=10;a<aTD.length;a++){
if(aTD[a].className == "table_sub_header" && aTD[a].colSpan == 2 && aTD[a].innerHTML.match(secs)){
aTD[a].parentNode.style.display = "none";
aTD[a+1].parentNode.style.display = "none";
}
}
}
</script>



Usable
Forum Statistics
Users Online
Today's Totals
Todays Calendar Events


Here's how to edit. Find this line:
var secs = /(Today's Totals|Todays Calendar Events)/i;

See the parenthesis? That's where you'll insert a section name from the "Usable" list. Seperate different section names with a vertical divider "|". If you want to remove one section, make sure there's no divider.

The code should go in your main footers.

newBookmarkLockedFalling