I installed a slightly modified version of the hack.
All work is (c) of original poster.
Open template navbar and find:
Code:
<if condition="$bbuserinfo['userid']">
<td class="alt2" valign="top" nowrap="nowrap">
<div class="smallfont">
and replace with:
Code:
<if condition="$bbuserinfo['userid']">
<td id="pmNotifybox" bgcolor="#F8F8F8" valign="top" nowrap="nowrap"><font color="#000000">
<div class="smallfont">
then find:
Code:
<!-- / breadcrumb, login, pm info -->
and add below it:
Code:
<if condition="$bbuserinfo['pmunread']">
<script language="JavaScript">
<!-- Begin
$pmblink pmNotifybox.bgColor='#f8f8f8';
$pmblink setInterval("Timer()", 500);
$pmblink x=1;
function Timer() {
set=1;
if(x==0 && set==1) {
pmNotifybox.bgColor='#f8f8f8';
x=1;
set=0;
}
if(x==1 && set==1) {
pmNotifybox.bgColor='#999999';
x=0;
set=0;
}
}
// End -->
</script>
</if>
Voila! The table cell that contains your user info and pm count will blink the color you specify. It is set now to exactly as I have it on my forum.