MyBB Community Forums

Full Version: Category Problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
When I go to click on my Category to view those forums in that specific category I get this view (attachment) How do I fix that width problem? I have latest version of mybb 1.6.6 with theme Blue Lust.
What's your website's URL?
This seems to be some kind of Table related issues...have u recently activated any sidebar type plugins?? or added anything in the Templates?

Some thing to do with the
Template : forumbit_depth1_cat
or the Template : forumbit_depth1_cat
my url is: gameaholic.org

@hefind, no I haven't
When i saw your Source code..of your website i saw there was a width attribute which was creating the issue...

<td class="tcat" width="2%">&nbsp;</td>
<td class="tcat" width="59%"><span class="smalltext"><strong>Forum</strong></span></td>
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>Threads</strong></span></td>
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>Posts</strong></span></td>
<td class="tcat" width="15%" align="center"><span class="smalltext"><strong>Last Post</strong></span></td>

Go to your admin control panel...
Home » Template Sets » Current Theme » Edit Template: forumbit_depth2_cat
Open the Template and remove the width attribute from there...I hope this fixes it...
(2012-03-28, 07:03 AM)hefind Wrote: [ -> ]This seems to be some kind of Table related issues...have u recently activated any sidebar type plugins?? or added anything in the Templates?

Some thing to do with the
Template : forumbit_depth1_cat
or the Template : forumbit_depth1_cat

(2012-03-28, 04:18 PM)hefind Wrote: [ -> ]When i saw your Source code..of your website i saw there was a width attribute which was creating the issue...

<td class="tcat" width="2%">&nbsp;</td>
<td class="tcat" width="59%"><span class="smalltext"><strong>Forum</strong></span></td>
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>Threads</strong></span></td>
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>Posts</strong></span></td>
<td class="tcat" width="15%" align="center"><span class="smalltext"><strong>Last Post</strong></span></td>

Go to your admin control panel...
Home » Template Sets » Current Theme » Edit Template: forumbit_depth2_cat
Open the Template and remove the width attribute from there...I hope this fixes it...

All I see in that edit template of forumbit_depth2_cat is:

<tr>
<td>
<table class="index-trow" border="0" cellspacing="0" cellpadding="{$theme['tablespace']}">
<tr>
<td align="center" valign="middle" 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="name-subs" valign="middle">
<a href="{$forum_url}" class="forum-name">{$forum['name']}</a>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}<div>{$subforums}</div></div>
</td>
<td width="100" valign="middle" align="center" style="white-space: nowrap"><span class="forum-info">{$threads} {$lang->forumbit_threads} {$unapproved['unapproved_threads']}</span></td>
<td width="100" valign="middle" align="center" style="white-space: nowrap"><span class="forum-info">{$posts} {$lang->forumbit_posts} {$unapproved['unapproved_posts']}</span></td>
<td width="200" valign="middle" align="right" style="white-space: nowrap">{$lastpost}</td>
</tr>
</table>
</td>
</tr>
In above code, at the beginning <td> add colspan like this;
<tr>
<td colspan="6">

Let me know how it works ?
(2012-03-28, 07:46 PM)Yaldaram Wrote: [ -> ]In above code, at the beginning <td> add colspan like this;
<tr>
<td colspan="6">

Let me know how it works ?

this is how I added it correct?

<tr>
<td colspan="6">
<table class="index-trow" border="0" cellspacing="0" cellpadding="{$theme['tablespace']}">
<tr>
<td align="center" valign="middle" 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="name-subs" valign="middle">
<a href="{$forum_url}" class="forum-name">{$forum['name']}</a>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}<div>{$subforums}</div></div>
</td>
<td width="100" valign="middle" align="center" style="white-space: nowrap"><span class="forum-info">{$threads} {$lang->forumbit_threads} {$unapproved['unapproved_threads']}</span></td>
<td width="100" valign="middle" align="center" style="white-space: nowrap"><span class="forum-info">{$posts} {$lang->forumbit_posts} {$unapproved['unapproved_posts']}</span></td>
<td width="200" valign="middle" align="right" style="white-space: nowrap">{$lastpost}</td>
</tr>
</table>
</td>
</tr>

and nothing happens
Alright, PM me your AdminCP login details so I could edit it for you.
Is there any other way of fixing this?
Pages: 1 2