PDA

View Full Version : Forum description position question


alexd181
12-13-2007, 10:52 PM
Hello, my forum descriptions for each forum on the main page take up like 5-6 lines because they are so condensed. Is there a mod or anything I can do to get them to appear below the area that has last posts, total threads, total posts etc.?


Thanks.

--------------- Added 1197621880 at 1197621880 ---------------

If this can't be done, does anyone know if I can get rid of the "Last Post" or "Total Posts" column? They are all just really making everything too condensed. I need like 2-3 columns max. Is it possible to disable them?


Thanks.

Freesteyelz
12-15-2007, 10:48 AM
Probably the quickest fix is to (assuming that you're using the default style):

In forumhome_forumbit_level2_post template remove:


<if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['forumsubscription']"><div class="smallfont"><strong><a href="subscription.php?$session[sessionurl]do=removesubscription&amp;f=$forum[forumid]" rel="nofollow">$vbphrase[unsubscribe_from_this_forum]</a></strong></div></if>



Then find:


</tr>
$childforumbits



And add above:


<tr>
<td class="alt1Active" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['forumsubscription']"><div class="smallfont"><strong><a href="subscription.php?$session[sessionurl]do=removesubscription&amp;f=$forum[forumid]" rel="nofollow">$vbphrase[unsubscribe_from_this_forum]</a></strong></div></if>
</td>
</tr>



See if that works. :)