You're missing a colspan="2" in the footer TD
HTML Code:
<!-- Footer --> <td><p style="font-family:Verdana, Arial, Helvetica, sans-serif; text-align:center; font-size:10px;">
should be
HTML Code:
<!-- Footer -->
<td colspan="2" id="footer"><p style="font-family:Verdana, Arial, Helvetica, sans-serif; text-align:center; font-size:10px;">
I also noticed that you have CSS in the body
(in the sidebar, through the widget wposcwidget_new_display)
that should be in the header:
This should not be in the body
HTML Code:
<style type="text/css">
div.rkImg
{
margin: 2px;
border: 0px;
height: auto;
width: auto;
float: left;
text-align: center;
}
div.rkImg img
{
display: inline;
margin: 3px;
border: 0px;
}
div.rkImg a:hover img {border: 0px;}
div.desc
{
text-align: center;
font-weight: normal;
width: 120px;
margin: 2px;
}
div.rkDescRight
{
text-align: left;
font-weight: normal;
width: auto;
margin: 4px;
}
</style>
You could insert that at HTML/CSS Inserts -> CSS Insert (Without
<style type="text/css"> and
</style>