MyBB Community Forums

Full Version: Eveness
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I managed to do this:

[Image: screenshot3tf.png]

Here is the code i used in forumbit_depth2_forum:

<tr>
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="http://www.handheldgaming.org/images/portal2//on.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /> </td>
</td><td class="{$bgcolor}" align="center" valign="middle" width="1"><img src="http://img708.imageshack.us/img708/2460/gamepadicon.png" style="margin-left: -6px" /></td>
<td class="{$bgcolor}" valign="top">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
</tr>

If you look at the image i provided it's all uneven and messy, how do i fix it?
Change the colspan of the tcat <td> with FORUM to 2, then change colspan of the thead <td> with category name to 5. Both are in forumbit_depth1_cat.
Done still somewhat the same.
Are you sure you edited following:
<td class="thead" colspan="4">
To:
<td class="thead" colspan="5">

And:
<td class="tcat"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>
To:
<td class="tcat" colspan="2"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>

(only colspan matters to fix that, the rest is irrelevant)

If you did and doesn't work or your templates look different, post your board url and/or at least forumbit_depth1_cat template. We can't guess what's the code in it by looking on screen.
I'm kind of confused, looking at the code i provided can you put what needs to be in there and post it here so i can copy?
You have an extra /td in there

</td><td class="{$bgcolor}" align="center" valign="middle" width="1"><img src="http://img708.imageshack.us/img708/2460/gamepadicon.png" style="margin-left: -6px" /></td>

remove that first </td>

<tr>
 <td class="{$bgcolor}" align="center" valign="top" width="1"><img src="http://www.handheldgaming.org/images/portal2//on.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /> </td>
<td class="{$bgcolor}" align="center" valign="middle" width="1"><img src="http://img708.imageshack.us/img708/2460/gamepadicon.png" style="margin-left: -6px" /></td>
 <td class="{$bgcolor}" colspan="2" valign="top">
 <strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
 </td>
 <td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}</td>
 <td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>
 <td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
 </tr>