MyBB Community Forums

Full Version: Who has been online today plugin became vertical position
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can i fix this "Who has been online today" plugin.. and make this horizontal position instead of vertical? 

i think my theme is not supported by this plugin.. and i dont know how to fix this.. is there a solution to fix this?

Thank you in advance..

[Image: Screenshot_from_2016_03_27_19_08_15.png]
Can you post your forum url and your index_boardstats , index_stats template please?
(2016-04-04, 04:56 AM)WallBB Wrote: [ -> ]Can you post your forum url and your index_boardstats , index_stats template please?

Pinoypantasya.net and here's my template it is sir WallBB.. Thank you..


index_boardstats

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<thead>
<tr>
<td class="thead{$collapsedthead['boardstats']}" colspan="2">
<div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['boardstats']}.png" 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">
{$whosonline}
{$online_today}
{$birthdays}
{$forumstats}
<tr>
	<td class="tfoot" style="text-align: right" colspan="2">
		<span class="smalltext">
			{$logoutlink}
			<a href="misc.php?action=markread{$post_code_string}" title="{$lang->markread}"><i class="fa fa-check-square flinks"></i></a>
			<a href="showteam.php" title="{$lang->forumteam}"><i class="fa fa-gears flinks"></i></a>
			{$statspage}
		</span>
	</td>
</tr>
</tbody>
</table>
<br />



index_stats

<tr><td class="tcat" colspan="2"><span class="smalltext"><strong>{$lang->boardstats}</strong></span></td></tr>
<tr>
<td class="trow1" valign="center" width="50px;">
<div class="1stat statsicon"></div>
</td>
<td class="trow1" valign="center"><span class="smalltext">
{$lang->stats_posts_threads}<br />
{$lang->stats_numusers}<br />
{$lang->stats_newestuser}<br />
{$lang->stats_mostonline}
</span>
</td>
</tr>
UP for a while..
Find online_today_index template and add colspan="2" to both <td>s in it.
(2016-04-06, 11:39 PM)Destroy666 Wrote: [ -> ]Find online_today_index template and add colspan="2" to both <td>s in it.

Wow great! Problem solve Thank you sir Destroy666!
For who looking for the where i put the colspan="2"

Admin Control Panel > Templates & Style > Templates > Global Templates > online_today_index

or

Home » Template Sets » Global Templates » Edit Template: online_today_index

or Copy my code

<tr>
<td colspan="2" class="tcat"><strong>{$lang->whos_online_today}</strong> [<a href="online.php?action=today">{$lang->complete_list}</a>]</td>
</tr>
<tr>
<td colspan="2" class="trow1"><span class="smalltext">{$lang->online_note_today}<br />{$onlinemembers}</span></td>
</tr>