***I just saw Vitality already had a code to do this, it was just a little different than this one. This thread can be closedThis is the first code I've posted on a forum... A simple code that changes the Info Center's Header text:
<script type="text/javascript">
//Nick -- http://revolutionX.smfforfree3.com
//Change NEW TEXT and yourboard using the instructions below
var newIC = "NEW TEXT";
var nICkrocks = document.getElementsByTagName("div");
var nICk = nICkrocks.length;
while(nICk--){
if(nICkrocks[nICk].className == "catbg" && nICkrocks[nICk].innerHTML.match("yourboard - Info Center")){
nICkrocks[nICk].innerHTML=nICkrocks[nICk].innerHTML.replace("yourboard - Info Center",newIC);
}
}
</script>
Instructions:
NEW TEXT | Replace this with whatever you want the new text to be; you can use HTML for this, as long as you use single quotes instead of double
yourboard | Replace this with your forum's name (not URL)
Works in FireFox and Safari. I'm on a Mac and can't check IE right now since I'm not home :p