Hey Belder, thanks for your post and sorry for the delay in posting but it took me a while to work on this issue and finally found a solution for it, here is the right code
Quote:
<td class="thead"> </td>
<td class="thead" width="75%" align="$stylevar[left]">$vbphrase[forum]</td>
<td width="25%" class="thead">$vbphrase[last_post]</td>
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
|
As you can see that the problem was that $vbphrase[forum] was set to 100% which was wrong, so I set it to 75% instead and then set the $vbphrase[last_post] to 25% , ofcourse you can change these variables according to your needs.
So the total code of the forumhome_forumbit_level1_nopost will be:
Quote:
<table style="border-collapse: collapse">
<tr>
<td align="left" style="padding: 0"><img src="$stylevar[imgdir_misc]/cat_top_l.gif" border="0" alt="" /></td>
<td class="cat-top"><a style="float:$stylevar[right]" href="#top" onClick="return toggle_collapse('forumbit_$forumid')"><img id="collapseimg_forumbit_$forumid" src="$stylevar[imgdir_button]/collapse_tcat{$collapseimg_forumid}.gif" alt="" border="0" /></a>
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a>
<if condition="$show['forumdescription']"> - $forum[description]</if>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
<td align="right" style="padding: 0"><img src="$stylevar[imgdir_misc]/cat_top_r.gif" alt="" /></td>
</tr>
</table>
<if condition="$childforumbits">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}">
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="75%" align="$stylevar[left]">$vbphrase[forum]</td>
<td width="25%" class="thead">$vbphrase[last_post]</td>
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>
$childforumbits
</tbody>
</table>
</if>
<table style="border-collapse: collapse">
<tr>
<td align="left" style="padding: 0"><img src="$stylevar[imgdir_misc]/cat_bottom_l.gif" alt="" /></td>
<td style="background-image: url($stylevar[imgdir_misc]/cat_bottom_bg.gif);width: 100%"></td>
<td align="right" style="padding: 0"><img src="$stylevar[imgdir_misc]/cat_bottom_r.gif" alt="" /></td>
</tr>
</table>
<br />
|
Thanks again for reporting that bug