Where you have:
Code:
<table border="1" cellspacing="0" style="border-collapse: collapse" width="756" cellpadding="0" bgcolor="#C73F17">
<tr>
<td width="778" align="center" colspan="6" bgcolor="#FFFFFF">
<img border="0" src="header2.jpg" width="760" height="95"></td>
The fact that a table cell is wider than the table it is in is throwing off the entire alignment of the table. By simply removing the width for the cell:
Code:
<table border="1" cellspacing="0" style="border-collapse: collapse" width="756" cellpadding="0" bgcolor="#C73F17">
<tr>
<td align="center" colspan="6" bgcolor="#FFFFFF">
<img border="0" src="header2.jpg" width="760" height="95"></td>
Things will line up properly. I also happened to notice that you are missing a units designation for the font-size of the dropmenudiv style (added here in red):
Code:
#dropmenudiv{
position:absolute;
border:1px solid gray;
font:normal 10px verdana;
line-height:20px;
z-index:100;
}
This is only a problem in certain browsers but, should be fixed.
Bookmarks