Quote:
Originally posted by Ryan McBain
well im sure its wrong cause its not working.... what code should i have??
|
This is what you should add to the end of template. Substitute the colors you want:
Code:
<script language="JavaScript">
<!-- Begin
$pmblink pmBox.bgColor='Alternate Flashing Color';
$pmblink setInterval("Timer()", 500);
$pmblink x=1;
function Timer() {
set=1;
if(x==0 && set==1) {
pmBox.bgColor='Normal Category Background Color';
x=1;
set=0;
}
if(x==1 && set==1) {
pmBox.bgColor='Alternate Flashing Color';
x=0;
set=0;
}
}
// End -->
</script>