Kahless
Administrator
Guitar Star
Posts: 1,045
|
Post by Kahless on Nov 1, 2007 22:47:03 GMT -5
Description: changes any word in your title or catagory bars to an image
Source: Open
Cross-Browser
Global Footer
add more of this line: flip("WORD TO CHANGE","IMAGEURL"); to add more things to change
<script type="text/javascript"> <!-- /* Coded by Kahless webAddict Open Source rules apply */ var iTD = document.getElementsByTagName("td"); function flip(text,image) { for(f=0;f<iTD.length;f++) { if(iTD[f].className == "titlebg" || (iTD[f].className == "catbg")) { iTD[f].innerHTML=iTD[f].innerHTML.replace(text,'<img src="'+image+'" border="0">'); } } } //Edit only Below here flip("WORD TO CHANGE","IMAGEURL"); //--> </script>
|
|