vForums Support > Programming & Coding :: Database of Codes/Hacks/Mods :: > Change Color of Announcements

Change Color of Announcements - Posted By Michael (wrighty) on 3rd Apr 08 at 6:15pm
This will let you change the color of Announcements to anything that you choose.

<script>
/*Change color of Announcements
Created By Wrighty
Do Not: Rip, Repost or Claim*/

var c = '#FF0000';

var x = '[A]';
var d = get('td','tag');
for(i=0;i<d.length;i++){
    if(d[i].innerHTML.match(x) && d[i].className=='window1'){
        d[i+1].getElementsByTagName('a')[0].style.color = c;
    }
}
</script>


Change the part that is red, to the color that you want them to appear.

Global Footer