Couldn't find it, so I recreated it
open modules/News/comments.php
find
Code:
echo "</td><td></td><td valign=\"top\">\n";
replace with
Code:
echo "</td><td></td><td valign=\"top\" rowspan=\"2\">\n";
find
Code:
echo "</td></tr></table>\n";
cookiedecode($user);
include("modules/$module_name/associates.php");
if ((($mode != "nocomments") OR ($acomm == 0)) OR ($articlecomm == 1)) {
include("modules/News/comments.php");
}
replace with
Code:
echo "</td></tr><tr><td>";
if ((($mode != "nocomments") OR ($acomm == 0)) OR ($articlecomm == 1)) {
include("modules/News/comments.php");
}
echo "</td></tr></table>\n";
cookiedecode($user);
include("modules/$module_name/associates.php");
That'll do it