Ross
eCreations Staff
Posts: 1,768
|
Post by Ross on Jul 3, 2005 16:55:43 GMT
Main Footer
This code will Remove the "Moderators: ..." displayed on the main page of the forum, regardless of weather that board has any mods or not.
<script type="text/javascript"> <!-- /* remove 'moderators' listing open source */
if(location.href.match(/\.com\/?(index.cgi)?\??(&?action=home)?(#\w+)?$/) || location.href.match(/\?board=\w+(&page=\d+)?(&moderationmode=\d)?$/)) { var i = document.getElementsByTagName('i'); for (m=0; m<i.length; m++) { if(i[m].innerHTML.match(/Moderator(s)?:/)) { i[m].style.display='none'; } } } //--> </script>
|
|