Index.php controller is altering layout

Hi,

I am working through byoddws and trying to implement the database retrieved information into an existing web page. it functions fine so far except that as soon as I use the index.php as controller the layout on my page gets pushed down about 20px causing images that have been blended into backgrounds aqnd other things to look out of place. Any idea how this could happen or better still how to fix it?

the only code on the page I am putting the database info into is


<p>
<?php echo $output; ?>
</p>

Let me guess… you’re saving the file as UTF-8 with BOM? Check in your editor. If so, then uncheck the “Save with BOM” option.

Thanks a ton that seems to have fixed the problem:)

Guess I’m too slow :smiley: