It's actually quite simple.
Just use this in your
Header HTML:CODE
<style>
#comments{display: none !important;}
</style>
And add the comment box code in your
Footer HTML:CODE
<form action="comment.php" method="POST">
<textarea name="comment"></textarea><br>
<input type="submit" class="button" value="Submit">
</form>
or you can use this code for the comment box except with a reset button.
Footer HTML:CODE
<form action="comment.php" method="POST">
<textarea name="comment"></textarea><br>
<input type="submit" class="button" value="Submit"> <input type="reset" class="button" value="Reset">
</form>