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
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.
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