I looked in the default vb images and they are user_offline.gif , user_online.gif, and user_invisible.gif , those are the same names as the ones I uploaded, but I just have text saying the users status.
Here was my postbit_onlinestatus template:
Code:
<span class="smallfont">
<if condition="$onlinestatus==0">
<phrase 1="$user[username]">$vbphrase[x_is_offline]</phrase>
</if>
<if condition="$onlinestatus==1">
<font color="#FF7800"><strong><phrase 1="$user[username]">$vbphrase[x_is_online_now]</phrase></strong></font>
</if>
<if condition="$onlinestatus==2">
<phrase 1="$user[username]">$vbphrase[x_is_invisible]</phrase>
</if>
</span>
I changed it to this and it works great:
Code:
<span class="smallfont">
<if condition="$onlinestatus==0">
<font color="#2073b4"><strong><img src="$stylevar[imgdir_statusicon]/user_online.gif"</img>Currently Offline.</strong></font>
</if>
<if condition="$onlinestatus==1">
<font color="#00ff00"><strong><img src="$stylevar[imgdir_statusicon]/user_online.gif"</img>Now Online.</strong></font>
</if>
<if condition="$onlinestatus==2"><font color="#727177"><strong><img src="$stylevar[imgdir_statusicon]/user_invisible.gif"</img>Invisible.</strong></font>
</if>
</span>