MyBB Community Forums

Full Version: Users Online Today Issues
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
That giant white space near the 'Who has been online today' how can I correct that. This is with the MYIPB.
[/u]
[Image: 55113948.png]
Post the index_boardstats template here.
(2011-10-20, 10:44 PM)Solidus Wrote: [ -> ]Post the index_boardstats template here.

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<thead>
<tr>
<td class="thead" colspan="2">
<div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['boardstats']}.gif" id="boardstats_img" class="expander" alt="[-]" title="[-]" /></div>
<div><strong>{$lang->boardstats}</strong></div>
</td>
</tr>
</thead>
<tr><td class="tcat" align="right" colspan="2">
<span class="smalltext">
<b>{$logoutlink}</b>
<b><a href="misc.php?action=markread">{$lang->markread}</a></b> &middot;
<b><a href="showteam.php">{$lang->forumteam}</a></b> &middot;
<b><a href="stats.php">{$lang->forumstats}</a></b>
</span>
</td></tr>
<tbody style="{$collapsed['boardstats_e']}" id="boardstats_e">
{$whosonline}
{$online_today}
{$birthdays}
{$forumstats}
</tbody>
</table>
<br />
<table border="0" width="100%">
Maybe.

Or, the plugin would of added a template under global templates, find that and post it if the above doesn't fix.
(2011-10-20, 11:04 PM)Solidus Wrote: [ -> ]<table border="0" width="100%">
Maybe.

Or, the plugin would of added a template under global templates, find that and post it if the above doesn't fix.

<tr>
<td class="tcat"><strong><span class="smalltext">{$lang->whos_online_today}</span></strong> [<a href="online.php?action=today"><span class="smalltext">{$lang->complete_list}</span></a>]</td>
</tr>
<tr>
<td class="trow1"><span class="smalltext">{$lang->online_note_today}<br />{$onlinemembers}</span></td>
</tr>
Hello?
Anyone? Huh
Change this;
<tr>
<td class="tcat"><strong><span class="smalltext">{$lang->whos_online_today}</span></strong> [<a href="online.php?action=today"><span class="smalltext">{$lang->complete_list}</span></a>]</td>
</tr>
<tr>
<td class="trow1"><span class="smalltext">{$lang->online_note_today}<br />{$onlinemembers}</span></td>
</tr>
to this;
<tr>
<td class="tcat" colspan="2"><strong><span class="smalltext">{$lang->whos_online_today}</span></strong> [<a href="online.php?action=today"><span class="smalltext">{$lang->complete_list}</span></a>]</td>
</tr>
<tr>
<td class="trow1" colspan="2"><span class="smalltext">{$lang->online_note_today}<br />{$onlinemembers}</span></td>
</tr>
(2011-10-22, 05:19 PM)Yaldaram Wrote: [ -> ]Change this;
<tr>
<td class="tcat"><strong><span class="smalltext">{$lang->whos_online_today}</span></strong> [<a href="online.php?action=today"><span class="smalltext">{$lang->complete_list}</span></a>]</td>
</tr>
<tr>
<td class="trow1"><span class="smalltext">{$lang->online_note_today}<br />{$onlinemembers}</span></td>
</tr>
to this;
<tr>
<td class="tcat" colspan="2"><strong><span class="smalltext">{$lang->whos_online_today}</span></strong> [<a href="online.php?action=today"><span class="smalltext">{$lang->complete_list}</span></a>]</td>
</tr>
<tr>
<td class="trow1" colspan="2"><span class="smalltext">{$lang->online_note_today}<br />{$onlinemembers}</span></td>
</tr>

Thanks sooo much! Smile