I have the comments appear right under the article on our site ... otherwise no one sees them!
http://theshanty.com/news/index.php
Ok .. in the articles.php, I believe I only moved the line, which is at the very end of the code:
Code:

cookiedecode($user);
if ((($mode != "nocomments") OR ($acomm == 0)) AND ($articlecomm == 1)) {
include("modules/News/comments.php");
}


The above line is at the very end of the article.php .. I moved it to around line 90, like this:
Code:

themearticle($aid, $informant, $datetime, $title, $bodytext, $topic, $topicname, $topicimage, $topictext);
cookiedecode($user);
if ((($mode != "nocomments") OR ($acomm == 0)) AND ($articlecomm == 1)) {
include("modules/News/comments.php");
}
echo "</td><td>&nbsp;</td><td valign=\"top\">\n";


The above edit is all you have to do to move the navbar, but the navbar is too long, and the Refresh button will go to a new line and screw up the table a little .. you'd think that the Post Comment button would go to a new line, but that is in its own cell!

Now, you might want to edit the navbar function in the comments.php, because it is too wide ... the simplest thing to do is to get rid of the table cell before the "replymain" (which is the Post Comment button) part of the form in the navbar.
That part of the navbar form looks like this:
Code:

."<input type=\"submit\" value=\""._REFRESH."\"></form>\n";
if ($anonpost==1 OR is_admin($admin) OR is_user($user)) {
echo "</font></td><td bgcolor=\"$bgcolor1\" valign=\"top\"><font class=\"content\"><form action=\"modules.php?name=News&amp;file=comments\" method=\"post\">"
."<input type=\"hidden\" name=\"pid\" value=\"$pid\">"
."<input type=\"hidden\" name=\"sid\" value=\"$sid\">"
."<input type=\"hidden\" name=\"op\" value=\"Reply\">"
."&nbsp;&nbsp;<input type=\"submit\" value=\""._REPLYMAIN."\">";


Change it to this:
Code:

."<input type=\"submit\" value=\""._REFRESH."\"></form>\n";
if ($anonpost==1 OR is_admin($admin) OR is_user($user)) {
echo "</font><center><font class=\"content\"><form action=\"modules.php?name=News&amp;file=comments\" method=\"post\">"
."<input type=\"hidden\" name=\"pid\" value=\"$pid\">"
."<input type=\"hidden\" name=\"sid\" value=\"$sid\">"
."<input type=\"hidden\" name=\"op\" value=\"Reply\">"
."&nbsp;&nbsp;<input type=\"submit\" value=\""._REPLYMAIN."\"></center>";
}


I did this at first, but I just changed it again ... I took out the "select the order" part of the form in the navbar instead, no one wants to change that anyway, and it makes the navbar narrow enough to fit the Post Comment button without going to another line.
Just delete the code that is in bold:
echo ">"._THREAD."</option>\n"
."</select><select name=\"order\">"
."<option value=\"0\"";
if (!$order) {
echo " selected";
}
echo ">"._OLDEST."</option>\n"
."<option value=\"1\"";
if ($order==1) {
echo " selected";
}
echo ">"._NEWEST."</option>\n"
."<option value=\"2\"";
if ($order==2) {
echo " selected";
}
echo ">"._HIGHEST."</option>\n"
."</select>
\n"
."<input type=\"hidden\" name=\"sid\" value=\"$sid\">\n"
."<input type=\"submit\" value=\""._REFRESH."\"></form>\n";
if ($anonpost==1 OR is_admin($admin) OR is_user($user)) {
echo "</font></td><td bgcolor=\"$bgcolor1\" align=\"center\"><font class=\"content\"><form action=\"modules.php?name=News&amp;file=comments\" method=\"post\">"
."<input type=\"hidden\" name=\"pid\" value=\"$pid\">"
."<input type=\"hidden\" name=\"sid\" value=\"$sid\">"
."<input type=\"hidden\" name=\"op\" value=\"Reply\">"
."&nbsp;&nbsp;<input type=\"submit\" value=\""._REPLYMAIN."\">";
}
Hope this helps