I installed 'as-is' and this screwed up my forum display (I have a fixed width forum), it made the forum wider than it should have been.
I changed the code in index.php and this cured my problem, this is how:
PHP Code:
// PM Blink Hack
if ($unreadpm['messages']==0) {
$pmblink='';
} else {
$pmblink="<script language=\"JavaScript\">
<!-- Begin
pmBox.bgColor='#1D6AA0';
setInterval(\"Timer()\", 500);
x=1;
function Timer() {
set=1;
if(x==0 && set==1) {
pmBox.bgColor='#336D95" background="https://vborg.vbsupport.ru/images/catagory_backing.gif';
x=1;
set=0;
}
if(x==1 && set==1) {
pmBox.bgColor='#1C5780';
x=0;
set=0;
}
}
// End -->
</script>";
}
And changed the forumhome_pmloggedin template to simply:
$allpm[messages] total messages in all your folders.)</smallfont></td>
</tr>
$pmblink
Hope that's useful to others.
LOL vBulletin parses the code ^^^ never realised that before (ie the background color etc).
Well, hopefully you can figure it out if you need to!