MyBB Community Forums

Full Version: Need Help Urgent! a Page of My Forums
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My Page That Shows me All Sub Categories is Ruined Why Is This And How Can I Fix it?

Demo: http://gamerwizz.co.uk/Forum-Welcome-to-360-Modz

It Dont Show Last Post And I Want the Forum Description wider please help me!
Post the code of :

forumbit_depth2_forum Template
<tr>
<td class="trow1a" align="center" valign="top" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>
<td class="trow1a" valign="top">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$subforums}</div>
</td>
<td class="trow1a" valign="top" align="center" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="trow1a" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="trow1a" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
</tr>

There it is
Sorry post:

forumdisplay_subforums template something is wrong with the way your coloms are named/ spaced. You need to adjust that i think. Since none of the heads match up with what is displayed below it.

Seems like you have one row to much something like:

<td class="tcat" width="2%">&nbsp;</td>
<td class="tcat" width="2%">&nbsp;</td>

while there only should be 1.
<table border="0" cellspacing="0" cellpadding="0" class="tborder2">
<tr>
<td class="thead" colspan="6" align="center">
<div class="theadleft"></div>
<div class="theadright"></div>
<div class="theadmain"><strong>{$lang->sub_forums_in}</strong></div>
</td>
</tr>
</table>
<table border="0" cellspacing="1" cellpadding="4" class="tborder">
<tr>
<td class="tcat" width="2%">&nbsp;</td><td class="tcat" width="2%">&nbsp;</td>
<td class="tcat" width="59%"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_threads}</strong></span></td>
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_posts}</strong></span></td>
<td class="tcat" width="15%" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>
</tr>
{$forums}
</table>
<br />

There it is
Change:

<td class="tcat" width="2%">&nbsp;</td><td class="tcat" width="2%">&nbsp;</td>
To:
<td class="tcat" width="2%">&nbsp;</td>

In the forumdisplay_subforums template ofcourse.
Thanks i Have Fixed it yes something was posted twice in the template and i adjusted the widths of the different parts thanks so much!