MyBB Community Forums

Full Version: help with code
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi , i wonder if anyone can help me with what i am doing wrong here?

i am trying to get this legend under the online users listed

[attachment=8873]

i have altered index_whoisonline

<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><br/>
<p><strong>Legend</strong> : <font color=green>[Admin]</font> <font color=blue>[Semi-Admin]</font> <font color=red>[Super Moderator]</font> <font color=#CC00CC>[Moderator]</font></p>
</tr>

thanks in advance
I think it's related to the CSS, give us the url - we'll be more helpful.
http://corny.phpnet.us/test/mybb/Upload/index.php

this is just a dummy forum where i can test things before they get moved to the main forum Smile
It's always good to test changes before updating the main site.

And for your problem, I've just test your forum with the w3c (x)html validator and the problem is you used the <p> tag inside a table - that is denied and cause problems.
try to replace it or enclose it with <td> tag.
that helped , many thanks Smile