Ross
eCreations Staff
Posts: 1,768
|
Post by Ross on Jul 3, 2005 17:17:37 GMT
Main FooterThis code will change any board names into an image. Edit the red with the Board ID and the blue with the URL of the Image <script type="text/javascript"> <!-- /* board name to image by ross 101support.proboards43.com */
var a = document.getElementsByTagName('a'); function BoardImage(id,image) { for(i=0;i<a.length;i++){ if(a.item(i).href.match(new RegExp('board='+id+'$'))) { a.item(i).innerHTML = "<img src='"+image+"' border='0' />"; } } }
BoardImage('Board ID','Image URL'); BoardImage('Board ID','Image URL'); BoardImage('Board ID','Image URL');
//--> </script>Repeat this line for more boards: BoardImage(' Board ID',' Image URL');
|
|