Just wondering if anyone can help me with this
I want where it says 0 threads and posts and stuff I want them to be in line with each other no half one side and the other half the other side...
Thanks in advance
Because I'm wanting it look like this
![[Image: w1lPN.png]](https://camo.mybb.com/afbe3ebc460661f72a9ca01dfe6d73e6fb450867/687474703a2f2f692e696d6775722e636f6d2f77316c504e2e706e67)
You need to add some widths for the td's in the forumbit_depth2_forum template.
You have something like this:
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}<br /> Threads</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}<br /> Posts</td>
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
Change it to something like:
<td class="{$bgcolor}" width="85" valign="top" align="center" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}<br /> Threads</td>
<td class="{$bgcolor}" width="85" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}<br /> Posts</td>
<td class="{$bgcolor}" width="200" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
This is what I get afterwards.
![[Image: yaaxw.png]](https://camo.mybb.com/0b13b4668ecc442dbe459fb48adc6ef4034f225b/687474703a2f2f692e696d6775722e636f6d2f79616178772e706e67)
I didn't mean replace the entire template, just add the widths as in my example.
(2012-02-26, 01:08 AM)Alan Shepperson Wrote: [ -> ]I didn't mean replace the entire template, just add the widths as in my example.
Well I made a mistake there. lol