inherit
12361
0
Mar 1, 2010 8:55:08 GMT -8
locust
118
August 2003
locust
|
Post by locust on Jun 24, 2005 8:55:14 GMT -8
Hello,
Have changed the words [ Exalt | Smite ] on my forum by using this coding:
<script type="text/javascript"> <!-- /* change "karma" words by california */
var karmaReplace="KARMA"; var exaltReplace="star"; var smiteReplace="obsolete";
var td=document.getElementsByTagName("td"); if(location.href.match(/action=(display|goto|viewprofile)/)){ for(i=0;i<td.length;i++){ if(td.width=="20%" && td.className.match(/windowbg/)){ var tempA=td.innerHTML.replace('KARMA:',karmaReplace+':'); var tempB=tempA.replace('Exalt',exaltReplace); var tempC=tempB.replace('Smite',smiteReplace); td.innerHTML=tempC; } } } // --> </script> In Global Footer.
But [ Exalt | Smite ] is still there in the PM section. How to change it there as well? I have tried adding the coding to Main Footer as well, but without luck.
|
|
inherit
Beware the ever changing head
33588
0
Nov 18, 2023 0:32:44 GMT -8
Ross
19,039
November 2004
elindir
|
Post by Ross on Jun 24, 2005 10:58:48 GMT -8
<script type="text/javascript"> <!-- /* change "karma" words by california */
var karmaReplace="KARMA"; var exaltReplace="star"; var smiteReplace="obsolete";
var td=document.getElementsByTagName("td"); if(location.href.match(/action=(display|goto|viewprofile|pmview)/)){ for(i=0;i<td.length;i++){ if(td.width=="20%" && td.className.match(/windowbg/)){ var tempA=td.innerHTML.replace('KARMA:',karmaReplace+':'); var tempB=tempA.replace('Exalt',exaltReplace); var tempC=tempB.replace('Smite',smiteReplace); td.innerHTML=tempC; } } } // --> </script>
|
|
inherit
Proboards Legend
212
0
May 11, 2006 12:32:55 GMT -8
california
21,035
December 1999
california
|
Post by california on Jun 24, 2005 23:10:32 GMT -8
[ click] That was posted there five days ago with that change made, and it has never been editted.
|
|