Ouch, you're right! Stupid mistake on my part, and after posting this will update the instructions accordingly. Luckily it's an easy fix if you've already made the above template changes. The problem was that there's a duplicate table ID of "threadslist."
Simply open up
FORUMDISPLAY and FIND:
Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center" id="threadslist">
<tbody>
$announcebits
REPLACE WITH:
Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tbody>
$announcebits
Save and that's it.
Basically all we're doing is removing the
id="threadslist" from that section.
My apologies for the error and inconvenience! Many thanks to
Skavenger for pointing this out.