MyBB Community Forums

Full Version: SideBoxes mod question
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Could someone make the side boxes mod include the [+] and [-] in the upper right hand corner so that you can minimize and expand the boxes?
Since it uses the "portal" templates for showing the boxes, i've made an example for you. Doing the others aint that hard ...

Ex. of portal_stats ( with collapse )
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<thead>
<tr>
<td class="thead"><div style="float:left"><strong>{$lang->forum_stats}</strong></div>
<div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['stats']}.gif" id="stats_img" class="expander" alt="[-]" /></div>
</td>
</tr>
</thead>
<tbody style="{$collapsed['stats_e']}" id="stats_e">
<tr>
<td class="trow1">
<span class="smalltext">
<strong>» </strong>{$lang->num_members} {$stats['numusers']}<br />
<strong>» </strong>{$lang->latest_member} <a href="{$mybb->settings['bburl']}/member.php?action=profile&uid={$stats['lastuid']}">{$stats['lastusername']}</a><br />
<strong>» </strong>{$lang->num_threads} {$stats['numthreads']}<br />
<strong>» </strong>{$lang->num_posts} {$stats['numposts']}
<br /><br /><a href="{$mybb->settings['bburl']}/stats.php">{$lang->full_stats}</a>
</span>
</td>
</tr>
</tbody>
</table>
<br />
thanks Big Grin