MyBB Community Forums

Full Version: forumbit not aligned
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, when I create a theme and I remove the .tcat I have this problem:

[Image: Alignment.png]

forumbits are not aligned. How could I fix that?
You need to specify a width for each. Visit the depth2_forum 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>
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>

replace with:
<td class="{$bgcolor}" valign="middle" width="80" align="center" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="{$bgcolor}" valign="middle" width="80" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" valign="middle" width="80" align="right" style="white-space: nowrap">{$lastpost}</td>
Thank you Wink
(2011-11-26, 02:06 PM)Trinit Wrote: [ -> ]Thank you Wink

No problem Smile.