Footers;
<style>
.cssname {font-color: #ff0000}
</style>
<script>
function name_across_board(){
//Created by Agent Moose (smcodes.smfforfree3.com)
var vthree = new Array();
vthree[vthree.length] = ["OLD NAME","NEW NAME","CSS NAME"];
var href = document.getElementsByTagName("a");
for(x=0;x<href.length;x++){
for(l=0;l<vthree.length;l++){
if(href[x].innerHTML.match(vthree[l][0])){
href[x].innerHTML = "<span class='" + vthree[l][2] + "'>" + vthree[l][(vthree[l][1] != "" ? 1 : 0)] + "</span>"
};};};
name_across_board()
</script>
This code is just like the first two, but You use CSS to make the users name diffrent. So if you know CSS, then you will know what to do. I don't know much CSS myself, so don't ask me for help

.
OLD NAME = The Name you want to add the color to.
NEW NAME = (OPTIONAL) Change the name of a user without editing the real one.
CSS NAME = This is where the CSS comes in. put the css name in this area.
So example, If I wanted to use the CSS I have in the code, I would do this:
vthree[vthree.length] = ["Agent Moose","","cssname"]
I hope you like it. Yes, I know it is confusing, but You will get used to it.
If you want to add more people, just add more of these lines:
vthree[vthree.length] = ["OLD NAME","NEW NAME","CSS NAME"]