Ross
eCreations Staff
Posts: 1,768
|
Post by Ross on Aug 26, 2005 12:28:37 GMT
Global/Main Footer This will add a new image in place of the on/off image. At the moment I'm using it on this forum to show "locked" boards.
<script type="text/javascript"> <!-- /* locked board image */ var locked="(general|another board ID|another board ID)"; var lockedImage="Image URL";
// no need to edit below var td=document.getElementsByTagName("td"); for(i=0;i<td.length;i++) if(td.width=="66%" && td.className=="windowbg2" && td.getElementsByTagName("a")[0].href.match('board='+locked+'$')) { td[i-1].getElementsByTagName("img")[0].src=lockedImage; } //--> </script>
Edit the Purple with the Board IDs, seperate each one with a "|" line. Edit the green with the image URL.
|
|