You have an extra blank TR and TD in there, that is why it appearing too large/tall. Look at the code below:
Code:
<!-- START LEFT 1 -->
<td width="219" valign="top" style="background: #FFF url(../images/nav_left/bg.gif)rep"><img src="../images/nav_left/sell_my_home.gif" width="167" height="37">
<table width="166" border="0" cellspacing="0" cellpadding="0" bgcolor="#9BB1E1">
<tr>
<td class="leftnav" onclick="mClk(this);" onmouseover="mOvr(this,"#7D94D5");" onmouseout="mOut(this,"");"><a id="lbtnAdd" href="javascript:__doPostBack('lbtnAdd','')">Add My Home</a></td>
</tr>
<tr>
<td class="leftnav" onclick="mClk(this);" onmouseover="mOvr(this,"#7D94D5");" onmouseout="mOut(this,"");">
</td>
</tr>
If you remove the second TR code like the following, it will probably appear correctly:
Code:
<!-- START LEFT 1 -->
<td width="219" valign="top" style="background: #FFF url(../images/nav_left/bg.gif)rep"><img src="../images/nav_left/sell_my_home.gif" width="167" height="37">
<table width="166" border="0" cellspacing="0" cellpadding="0" bgcolor="#9BB1E1">
<tr>
<td class="leftnav" onclick="mClk(this);" onmouseover="mOvr(this,"#7D94D5");" onmouseout="mOut(this,"");"><a id="lbtnAdd" href="javascript:__doPostBack('lbtnAdd','')">Add My Home</a></td>
</tr>
Bookmarks