Help withtwo quick andeasy things

masako

New Member
Hey guys I was wondering how to do these two things.

Untitled-1.jpg


I was wondering, first, how I could get the word webmaster to disapear. But not just for web master but for all the usergroups to not apear under the persons name. I have a rank attached to each usergroup so I could put an image below and It looks bad if it appears twice. I also want to know how to replace the word online with a picture. Thanks
 

vokin

New Member
Change your postbit_onlinestatus by this :

HTML:
<if condition="$onlinestatus==0"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/user_offline.gif" alt="<phrase 1="$user[username]">$vbphrase[x_is_offline]</phrase>" border="0" /></if>
<if condition="$onlinestatus==1"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/user_online.gif" alt="<phrase 1="$user[username]">$vbphrase[x_is_online_now]</phrase>" border="0" /></if>
<if condition="$onlinestatus==2"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/user_invisible.gif" alt="<phrase 1="$user[username]">$vbphrase[x_is_invisible]</phrase>" border="0" /></if>

then you have to put pictures called user_invisible.gif etc ... in your_skin/statusicon/
 
Top