MyBB Community Forums

Full Version: Having issues with forum sizes! HELP ME :D
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So i am having this issue with my forums. It has a little to do with the plugin i use called "MyTabs". The link to my site is www.EmpireMethod.com I was wondering if anyone could help me fix the issue. This is what i am seeing.

The spacing is wayyy off. Can anyone help me with this via teamviewer so that i can see how you do it as well.
[Image: asdasdasd-1.png]

Contact info: (if you can help makes lots of changes to mybb ill pay you.)
Skype: TheEmpireNetwork


ANY HELP WOULD BE APPRECIATED!
you can try to change width in forumbit_depht1_cat:

- width from 85 to 550 (width about Threads)
- width to 85 for Posts and Last Post
wow thats much better. Any clue how to fix the black spot in the top right hand corner?

[Image: Untitled123.png]

looks strange to me to not have the same color there. haha. heres the code.

<table border="0" cellspacing="0" cellpadding="0" class="tborder2">
<thead>
<tr>
<td class="thead" colspan="6">
<div class="theadleft"></div>
<div class="theadright"></div>
<div class="theadmain">
<div class="expcolimage"><img src="{$theme['imgdir']}/{$expcolimage}" id="cat_{$forum['fid']}_img" class="expander" alt="{$expaltext}" title="{$expaltext}" /></div>
<div><strong><a href="{$forum_url}">{$forum['name']}</a></strong><br /><div class="smalltext">{$forum['description']}</div></div>
</div>
</td>
</tr>
</thead>
</table>
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tbody style="{$expdisplay}" id="cat_{$forum['fid']}_e">
<tr>
<td class="tcat"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>
<td class="tcat" width="550" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_threads}</strong></span></td>
<td class="tcat" width="85" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_posts}</strong></span></td>
<td class="tcat" width="85" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>
</tr>
{$sub_forums}
</tbody>
</table>
<br />
I think the problem is here:

<tr>
<td class="tcat"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>
<td class="tcat" width="550" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_threads}</strong></span></td>
<td class="tcat" width="85" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_posts}</strong></span></td>
<td class="tcat" width="85" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>
</tr>

You have 5 columns and in the code you have only 4. Try with:

<tr>
<td class="tcat" width="85" align="center"></td>  (this is for icon column, first column))
<td class="tcat"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>
<td class="tcat" width="550" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_threads}</strong></span></td>
<td class="tcat" width="85" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_posts}</strong></span></td>
<td class="tcat" width="85" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>
</tr>