I'm having massive amounts of trouble having IE display my site properly.
There is supposed to be a 10px separation between the header and the content. This works fine on Safari, FF, Opera.... everything but IE. In Internet Eliminator, the separation is nearly twice the size it should be.
I took a look at the view source in Safari and IE and they have one difference. On IE some sort of corrupted or uninterruptible character is shown before the content table (Yeah, I'm using a table. Whatevs.) I attached a screenshot from IE (first) and Safari (second) for your viewing pleasure.
I checked the master files and there is no character where the screwed up one is. This spot is where the content is included into page using PHP. Here's the code I'm using:
And this in the where the content goes:
There is supposed to be a 10px separation between the header and the content. This works fine on Safari, FF, Opera.... everything but IE. In Internet Eliminator, the separation is nearly twice the size it should be.
I took a look at the view source in Safari and IE and they have one difference. On IE some sort of corrupted or uninterruptible character is shown before the content table (Yeah, I'm using a table. Whatevs.) I attached a screenshot from IE (first) and Safari (second) for your viewing pleasure.
I checked the master files and there is no character where the screwed up one is. This spot is where the content is included into page using PHP. Here's the code I'm using:
Code:
<?php
// Get page. Meow!!
if (isset($_GET['page'])) {
$body = $_GET['page'].'.php';
}else{
$body = 'main.php';
}// Starting page content. Eat a pineapple.
?>
And this in the where the content goes:
Code:
<?php include ($body); ?>