View Single Post
  #10  
Old 04-28-2012, 07:39 AM
Alaric Alaric is offline
Mod
 
Join Date: Nov 2011
Posts: 112
Gender: Male
Credits: 317,548
Alaric is on a distinguished road
Default

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.
Reply With Quote