I Have figured out what causes the massive spaces, line breaks and shoving things like tables and forms far down the page.
In The File-Manager, Open Whatever php you want to edit. and search for this line
PHP Code:
// Convert line breaks to <br>
$article_content = nl2br ($article_content);
Replace it with this:
PHP Code:
// Convert line breaks to <br>
$article_content = ($article_content);
Fixed.