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

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

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

var c = '#FF0000';

var x = '[L]';
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