2008-06-25, 06:58 AM
I want to move the name from the moderator to the last post line (under the name of the last poster).
Now it is in the forum line under the discription of the forum.
There is one problem when I do this, I want to have this with the lettersize "smalltext" (just like the text from the lastposter).
In forumbit_depth2_forum you find this (my original)
This I change to
But the the lettersize is big, how do I change that
Now it is in the forum line under the discription of the forum.
There is one problem when I do this, I want to have this with the lettersize "smalltext" (just like the text from the lastposter).
In forumbit_depth2_forum you find this (my original)
Quote:<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</td>
<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>
</tr>
This I change to
Quote:<div class="smalltext">{$forum['description']}{$subforums}</div>
</td>
<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></tr>{$modlist}
But the the lettersize is big, how do I change that