MyBB Community Forums

Full Version: How do I edit my board statistics so they're side by side?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
http://photoshopbliss.com/board/

As you can see, instead of the board stats category being under the who's online category, it's to the right of it, side by side. How do I edit my board statistics like this? I've tried thinking of ways to do it but I can't seem to find a solution. Any help is appreciated.
Replace index_birthdays with:

<tr>
<td class="tcat" colspan="2"><span class="smalltext"><strong>{$lang->todays_birthdays}</strong></span></td>
</tr>
<tr>
<td class="trow1" colspan="2"><span class="smalltext">{$bdays}</span></td>
</tr>

Replace index_boardstats with:

<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>
<tbody style="{$collapsed['boardstats_e']}" id="boardstats_e">
{$forumstats}
{$birthdays}
<tr>
	<td class="tfoot" style="text-align: right" colspan="2">
		<span class="smalltext">
			{$logoutlink}
			<a href="misc.php?action=markread{$post_code_string}">{$lang->markread}</a> |
			<a href="showteam.php">{$lang->forumteam}</a> |
			<a href="stats.php">{$lang->forumstats}</a>
		</span>
	</td>
</tr>
</tbody>
</table>
<br />

Replace index_stats with:

<tr>
<td class="tcat" width="50%"><span class="smalltext"><strong>{$lang->whos_online}</strong> [<a href="online.php">{$lang->complete_list}</a>]</span></td>
<td class="tcat"><span class="smalltext"><strong>{$lang->boardstats}</strong></span></td>
</tr>
<tr>
<td class="trow1"><span class="smalltext">{$lang->online_note}<br />{$onlinemembers}</span></td>
<td class="trow1">
<span class="smalltext">
{$lang->stats_posts_threads}<br />
{$lang->stats_numusers}<br />
{$lang->stats_newestuser}<br />
{$lang->stats_mostonline}
</span>
</td>
</tr>
It's scary how fast you answered that... But it worked!

Thanks faviouz. Smile
(2011-08-17, 03:34 PM)Forum Source Wrote: [ -> ]It's scary how fast you answered that... But it worked!
You can read more about it here:

http://en.wikipedia.org/wiki/Superpower_(ability)