Quote:
Originally Posted by Boofo
Can we see yours?
|
I'll try to mate - my gif animation skillz are a bit rusty
BBL with it hopefully
Grab the JS file - the chgclass.js file - upload it to forumhome/clientscript and load that in your headinclude template.
Code:
<script type="text/javascript" src="$vboptions[bburl]/clientscript/vbulletin_chgclass.js"></script>
Then in the navbar template, make the following alterations ...
Find the first instance of:
PHP Code:
<script type="text/javascript">
<!--
ADD AFTER:
PHP Code:
<if condition="$bbuserinfo['pmunread']">
setInterval("Timer()", 1000);
x=1;
function Timer()
{
set=1;
if (x==0 && set==1)
{
changeSty('alt1','pmBox');
changeSty('alt2','breadBox');
x=1;
set=0;
}
if (x==1 && set==1)
{
changeSty('alt2','pmBox');
changeSty('alt1','breadBox');
x=0;
set=0;
}
}
</if>
Example:
It works with whatever colours you have in your style for alt1 and alt2, so translates across your board without trouble