MyBB Community Forums

Full Version: Adding rank legend below who's online
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I add below "who's online" the userranks and their color?

please go to the template manager > index template > index_whosonline
replace it with

Code:
<tr>
<td class="tcat"><strong>$lang->whos_online</strong> [<a href="online.php">$lang->complete_list</a>]</td>
</tr>
<tr>
<td class="trow1"><span class="smalltext">$lang->online_note [<font color="#ff0000"><i><b>Admin</b></i></font>] [<font color="#00cc66"><b>Mods</b></font>] <br />
��$onlinemembers</span></td>
</tr>


so they will appear just beside " (1 member, 1 of whom is invisible, and 0 guests). "



regards
Thanks for the basics.
I played with it a little and this looked best in my opinion:

Quote:<tr>
<td class="tcat"><strong>$lang->whos_online</strong> [<a href="online.php">$lang->complete_list</a>] </td>
</tr>
<tr>
<td class="trow1"><span class="smalltext">$lang->online_note<br />$onlinemembers</span></td>
</tr>
<tr>
<td class="tcat"><center> [<font color="#008000"><b>Admin</b></font>] [<font color="#FF0000"><b>Super Moderator</b></font>] [<font color="#6CAA09">Member</font>] [<font color="#000000">Search Engine</font>]</center> </td>
</tr>

http://www.gfx-depot.com/forum/ (example at the bottom)
Yeah sure each modify it for his own need!!

regards