
So after wrapping a few things up, I decide to see the view from the Internet Explorer window. Of course, as you can guess, IE pulls it's pants down and takes a dump all over my hard work.

So I wanted to know how to fix this. I've always had this problem with IE, and I'm getting kind of tired of it. Usually I just slap up some scrolling text with alarm bells and flashing lights attached warning IE users away, but this time I really want to figure out how to fix this.
Here's my code.
CODE
<html>
<head>
<title>
Edge City Times
</title>
</head>
<body bgcolor="333333">
<center>
<table border="0" cellspacing="0" cellpadding="0" width="872">
<tr>
<td background="http://edgecitytimes.uuuq.com/images/topper.png" align="left" height="44" valign="center" colspan="3">
<?php
$day1=date("l F dS, Y");
echo "<b>" . $day1 . "</b>";
?>
</td>
</tr>
<tr>
<td height="67" colspan="3">
<img src="http://edgecitytimes.uuuq.com/images/ectbanner.png">
</td>
</tr>
<tr>
<td width="211" height="366">
<img src="http://edgecitytimes.uuuq.com/images/mainbutton.png">
<br>
<img src="http://edgecitytimes.uuuq.com/images/comicbutton.png">
<br>
<img src="http://edgecitytimes.uuuq.com/images/archivesbutton.png">
</td>
<td width="450" height="366">
<img src="http://edgecitytimes.uuuq.com/images/mainimage.png">
</td>
<td width="211" height="366">
<img src="http://edgecitytimes.uuuq.com/images/aboutbutton.png">
<br>
<img src="http://edgecitytimes.uuuq.com/images/contactbutton.png">
</td>
</tr>
<tr>
<td background="http://edgecitytimes.uuuq.com/images/leftfiller.png">
</td>
<td background="http://edgecitytimes.uuuq.com/images/mainfiller.png">
<center>
<p>
<b>WELCOME</b>
</p>
</center>
<p>
Hello, and welcome to Edge City Times - the eventual home of the webcomic <i>Edge City</i>. This site is merely a dummy site I've set up for the purpose of getting the layout correct. Feel free to look around the page.
</p>
<p align="right">
<b>Anthony, Site Administrator</b>
</p>
</td>
<td background="http://edgecitytimes.uuuq.com/images/rightfiller.png">
</td>
</tr>
<tr>
<td colspan="3">
<img src="http://edgecitytimes.uuuq.com/images/bottom.png">
</td>
</tr>
</table>
</center>
<center>
<font color="444444">
<p>
© Anthony Krueger
<?php
$date1=2009;
$date2=date("Y");
if ($date2=="2009")
echo " " . $date1;
else
echo " " . $date1 . "-" . $date2;
?>
</p>
</font>
</center>
</body>
</html>
<head>
<title>
Edge City Times
</title>
</head>
<body bgcolor="333333">
<center>
<table border="0" cellspacing="0" cellpadding="0" width="872">
<tr>
<td background="http://edgecitytimes.uuuq.com/images/topper.png" align="left" height="44" valign="center" colspan="3">
<?php
$day1=date("l F dS, Y");
echo "<b>" . $day1 . "</b>";
?>
</td>
</tr>
<tr>
<td height="67" colspan="3">
<img src="http://edgecitytimes.uuuq.com/images/ectbanner.png">
</td>
</tr>
<tr>
<td width="211" height="366">
<img src="http://edgecitytimes.uuuq.com/images/mainbutton.png">
<br>
<img src="http://edgecitytimes.uuuq.com/images/comicbutton.png">
<br>
<img src="http://edgecitytimes.uuuq.com/images/archivesbutton.png">
</td>
<td width="450" height="366">
<img src="http://edgecitytimes.uuuq.com/images/mainimage.png">
</td>
<td width="211" height="366">
<img src="http://edgecitytimes.uuuq.com/images/aboutbutton.png">
<br>
<img src="http://edgecitytimes.uuuq.com/images/contactbutton.png">
</td>
</tr>
<tr>
<td background="http://edgecitytimes.uuuq.com/images/leftfiller.png">
</td>
<td background="http://edgecitytimes.uuuq.com/images/mainfiller.png">
<center>
<p>
<b>WELCOME</b>
</p>
</center>
<p>
Hello, and welcome to Edge City Times - the eventual home of the webcomic <i>Edge City</i>. This site is merely a dummy site I've set up for the purpose of getting the layout correct. Feel free to look around the page.
</p>
<p align="right">
<b>Anthony, Site Administrator</b>
</p>
</td>
<td background="http://edgecitytimes.uuuq.com/images/rightfiller.png">
</td>
</tr>
<tr>
<td colspan="3">
<img src="http://edgecitytimes.uuuq.com/images/bottom.png">
</td>
</tr>
</table>
</center>
<center>
<font color="444444">
<p>
© Anthony Krueger
<?php
$date1=2009;
$date2=date("Y");
if ($date2=="2009")
echo " " . $date1;
else
echo " " . $date1 . "-" . $date2;
?>
</p>
</font>
</center>
</body>
</html>
