i saw a request for blinking background images and didnt see a reply. here is how to do it.
1)upload 2 images into the forums/images folder that you want to blink
2)add this line to the template insteade of the original:
Code:
<script language="JavaScript">
<!-- Begin
$pmblink pmBox.backbround='{imagesfolder }/img1.gif';
$pmblink setInterval("Timer()", 500);
$pmblink x=1;
function Timer() {
set=1;
if(x==0 && set==1) {
pmBox.background='{imagesfolder }/img1.gif';
x=1;
set=0;
}
if(x==1 && set==1) {
pmBox.background='{imagesfolder }/img2.gif';
x=0;
set=0;
}
}
// End -->
</script>
*note: take the space in {imagesfolder } out
*note: replace the img1.gif and img2.gif with the file names that you uploaded