Hello, and welcome to Sitepoint! You have the right forum, but ironically the problem is not with the stylesheet. It's with the XHTML output from the PHP scripts you're using (which means the PHP is the culprit, not the CSS or the XHTML).
You have content above your DOCTYPE, which is throwing the browsers into quirks mode (in this case, even FireFox).
HTML Code:
<!--<br />
<b>Warning</b>: session_start(): Cannot send session cookie - headers already sent by (output started at /u/d/dbensted/index.php:1) in <b>/u/d/dbensted/index.php</b> on line <b>4</b><br />
<br />
<b>Warning</b>: session_start(): Cannot send session cache limiter - headers already sent (output started at /u/d/dbensted/index.php:1) in <b>/u/d/dbensted/index.php</b> on line <b>4</b><br />
-->
However, it looks like this is uniquely a PHP problem (the headers have already been sent).
If you can post the PHP code, one of our PHP experts will be able to help you out.
Bookmarks