[REQ] Latest threads

vbuser49

New Member
Not sure which one this is but it looks like latest threads to me. The one I already installed is latest x threads but it doesn't look the same. I prefer the one in the pic because of all the detailed information. Thanks in advance.
 
vbuser49 said:
Not sure which one this is but it looks like latest threads to me. The one I already installed is latest x threads but it doesn't look the same. I prefer the one in the pic because of all the detailed information. Thanks in advance.


Instructions:
go to template and style > default styles > forumhome template > forumhome

find

Code:
$navbar

add after

Code:
<!-- chrism latest threads -->
<table class="tborder" cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
<if condition="$show['latestthreads']">
<tbody>
    <tr>
        <td class="thead" colspan="2">
            <a style="float:$stylevar[align=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><tr><td colspan="2" bgcolor="#e5ebf3">
<marquee direction="up" onmouseover='stop()' onmouseout='start()' width="100%" scrolldelay="180" >

<table border="0" width="100%" cellpadding="6" cellspacing="1">
<tbody id="collapseobj_forumhome_latestthreads" style="$vbcollapse[collapseobj_forumhome_latestthreads]">
    <tr>
        
        <td class="alt1"><div class="smallfont">$threadbits</div></td>
    </tr>
</tbody>
</td>
    </tr>
</tbody>
</table>
</marquee>
</td></tr></tbody>

</if>
</table>
<!-- / chrism latest threads -->
 
Back
Top