[img]http://****************/v1/uploads/86110726fe.png[/img]

Where i ahve attempted to circle is the table widths. But for some reason it is staying the same as the top cells. This has never happened before. Why is it doing this?

Here is my code:

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
<!--
body,td,th {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: #CCCCCC;
}
body {
    background-color: #353745;
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}
a {
    font-size: 10px;
    color: #999999;
}
a:link {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
    color: #999999;
}
a:hover {
    text-decoration: underline;
    color: #666666;
}
a:active {
    text-decoration: none;
    color: #999999;
}
-->
</style></head>

<body>
<table width="900" height="100%" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td width="50" rowspan="5" background="images/border_left.gif">&nbsp;</td>
    <td width="500" height="140" rowspan="3" valign="top" bgcolor="A4AAC4"><img src="images/header.gif" width="500" height="140" /></td>
    <td width="5" height="140" rowspan="3" valign="top" bgcolor="A4AAC4"><img src="images/ad_left.gif" width="5" height="140" /></td>
    <td width="290" height="5" valign="top" bgcolor="A4AAC4"><img src="images/ad_top.gif" width="290" height="5" /></td>
    <td width="5" height="140" rowspan="3" valign="top" bgcolor="A4AAC4"><img src="images/ad_right.gif" width="5" height="140" /></td>
    <td width="50" rowspan="5" background="images/border_right.gif">&nbsp;</td>
  </tr>
  <tr>
    <td width="290" height="129" valign="top" background="images/ad_bg.gif">&nbsp;</td>
  </tr>
  <tr>
    <td width="290" height="6" valign="top" bgcolor="A4AAC4"><img src="images/ad_bottom.gif" width="290" height="6" /></td>
  </tr>
  <tr>
    <td colspan="2" bgcolor="A4AAC4">&nbsp;</td>
    <td bgcolor="A4AAC4">&nbsp;</td>
    <td bgcolor="A4AAC4">&nbsp;</td>
  </tr>
  <tr>
    <td colspan="4" bgcolor="A4AAC4">&nbsp;</td>
  </tr>
</table>
</body>
</html>
Anyone know what is wrong?