Add this to your headers if you don't have it:
<script src="/jquery.js"></script>
Footers:
<script>
function name_across_board() {
//Created by Agent Moose (smcodes.smfforfree3.com)
$(function() {
var vfour = new Array()
vfour[vfour.length] = ["Agent Moose","","orange","<b>"]
vfour[vfour.length] = ["OLD NAME","NEW NAME","COLOR","OTHER"]
for(f=0;f<vfour.length;f++){
$("a").each(function() {
if(this.innerHTML == vfour[f][0]){this.innerHTML = this.innerHTML.replace(vfour[f][0],"<font color='" + vfour[f][2] + "'>" + vfour[f][3] + vfour[f][(vfour[f][1] != "" ? 1 : 0)] + "</font>");};
});};});}
name_across_board();
</script>
OLD NAME = The persons name you want to change
NEW NAME = (OPTIONAL) This will give a new name to the person.
COLOR = The color of the username
OTHER = You may add any HTML here.
If you notice, I made this code more like V2 of it, but with some changes. It will not change the whole link to the name, if the name of the person is in it. If that makes since.