MyBB Community Forums

Full Version: Problem modifying forum-bit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm trying to make my forum-bit look like Zetaboards, and I have it mostly figured out, I'm just having trouble with the subforums part. It should look like this(just a link to a ZB forum, maybe we should get some of the people who design for it to design for MyBB lawl). But instead it looks like this.
It looks fine in dreamweaver, but not in real time browsing.

Here's my forumbit_depth2_forum template:
<tr>
<td rowspan="3" class="{$bgcolor}" width="1" align="center" valign="middle"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>
<td rowspan="2" class="{$bgcolor}">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>
<div class="smalltext">{$forum['description']}{$modlist}</div>
</td>
<td width="30%" colspan="2" class="{$bgcolor}">
{$lastpost}
</td>
</tr>
<tr class="{$bgcolor}">
<td class="{$bgcolor}" align="center"><div class="smalltext">Topics: {$threads}{$unapproved['unapproved_threads']}</div></td>
<td class="{$bgcolor}" align="center"><div class="smalltext">Replies: {$posts}{$unapproved['unapproved_posts']}</div></td>
</tr>
{$subforums}

And here's my forumbit_subforums template:
<td colspan="3" class="{$bgcolor}">
<span style="font-size:80%;"><strong>Subforums:</strong> {$sub_forums}</div></span>
</td>