MyBB Community Forums

Full Version: New styl and bug...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello!
When I install new style my group legend no work in 100%

Look:
[Image: legend.JPG]

My index_whosonline

<tr>
<td class="tcat" colspan="2"><strong>{$lang->whos_online}</strong> [<a href="online.php">{$lang->complete_list}</a>]</td>
</tr>
<tr>
<td class="trow1" style="width:30px;" align="center"><img src="$theme[imgdir]/online.gif" alt="{$lang->whos_online}" /></td>
<td class="trow2"><span class="smalltext">{$lang->online_note}<br />{$onlinemembers}</span></td>
</tr>
<tr>
<td class="tcat" colspan="2"><strong>Legenda</strong></td></tr>
	<tr> <td class="trow2" >{$legend_disp}</td>
</tr>

Please help me Wink
Try this

<tr>
<td class="tcat" colspan="2"><strong>{$lang->whos_online}</strong> [<a href="online.php">{$lang->complete_list}</a>]</td>
</tr>
<tr>
<td class="trow1" style="width:30px;" align="center"><img src="$theme[imgdir]/online.gif" alt="{$lang->whos_online}" /></td>
<td class="trow2"><span class="smalltext">{$lang->online_note}<br />{$onlinemembers}</span></td>
</tr>
<tr>
<td class="tcat" colspan="2"><strong>Legenda</strong></td></tr>
    <tr> <td class="trow2" colspan="2">{$legend_disp}</td>
</tr>
It is work:

<tr>
<td class="tcat" colspan="2"><strong>{$lang->whos_online}</strong> [<a href="online.php">{$lang->complete_list}</a>]</td>
</tr>
<tr>
<td class="trow1" style="width:30px;" align="center"><img src="$theme[imgdir]/online.gif" alt="{$lang->whos_online}" /></td>
<td class="trow2"><span class="smalltext">{$lang->online_note}<br />{$onlinemembers}</span></td></tr>
<td class="tcat" colspan="2"><strong>Legenda</strong></td></tr>
<tr>
<td class="trow1" style="width:30px;" align="center"><img src="$theme[imgdir]/legend.gif" alt="{$lang->whos_online}" /></td>
<td class="trow2">{$legend_disp}<span class="smalltext"></span></td></tr>
Wink

[Image: leg.JPG]
They both worked but you just added a logo to the legend on the second oneToungue