MyBB Community Forums

Full Version: An Error on the Homepage!?!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What can I do for this error please help me??

Holy GIF quality, Batman!

The column is being pushed over because ul.alt_forumlar (which lists the subforums) has a defined width of 638px.
Go to:
Admin CP > Templates & Style > Templates > Your Theme > Forum Bit Templates > forumbit_depth2_cat
and find:
<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>

put width code before valign.. to look like this:
<td class="{$bgcolor}" width="85" valign="top" align="center" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="{$bgcolor}" width="85" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>