Quote:
Originally Posted by dodjer42
Bit of a noob question, but my latest threads appears at the bottom of my forum. Shouldnt it appear at the top? I searched in FORUMHOME and put it in according to the install instructions, but its still at the bottom.
Regards,
D
|
Sorted.
I found also that using the default syntax, the latest threads popped up without a border table. I modded the FORUMHOME insert code to this which seems to be a bit cleaner.
PHP Code:
<!-- latest threads -->
<if condition="$show['latestthreads']">
<tbody>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_latestthreads')"><img id="collapseimg_forumhome_latestthreads" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_latestthreads].gif" alt="" border="0" /></a>
$vbphrase[latest_threads]
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_latestthreads" style="$vbcollapse[collapseobj_forumhome_latestthreads]">
<tr>
<td class="alt1"><div class="smallfont">$threadbits</div></td>
</tr>
</tbody>
</table>
</if>
<!-- /latest threads -->
Is there anyway to modify the text so that forum thread title is truncated less? At the moment it seems to truncate around 10-15 chars along (even though I have hundreds of pixels whitespace on the right of the latest threads table.