This is the code for that bottom area:
HTML Code:
<table width="100%" border="0" cellspacing="0" cellpadding="6">
<tr>
<td width="4%" bgcolor="#7193a9"> </td>
<td width="18%" bgcolor="#7b9aaf"> </td>
<td width="75%" class="subtopic_text"><div align="center"><a href="http://www.charterglobal.com/contact.htm" class="subtopic_text">Contact Us</a> | <a href="http://www.charterglobal.com/sitemap.htm" class="subtopic_text">Site Map</a> | <a href="http://www.charterglobal.com/legal.htm" class="subtopic_text">Legal</a> | <a href="http://www.charterglobal.com/privacy.htm" class="subtopic_text">Privacy </a> Copyright Charterglobal.com All rights Reserved 2006</div></td>
<td width="3%" bgcolor="#6a7377"> </td>
</tr>
</table>
Since the widths of the cells (td tags) are set in percentages, they become subject to the vagaries of browser interpretation. Just for your information, Opera displays it off as well but by a different amount of space. I think FF counts the cellpadding when determining % width and IE does not or it may be the other way around. If you were to use a strict DOCTYPE the various browsers might see things more alike but it may also throw off other alignments on the page. This is probably the best solution though it would be a bit of work, getting things to look as intended, overall, with a strict DOCTYPE. Another fairly good solution, if applicable (I haven't looked that deeply into the overall page structure), would be to make this bottom table not a separate table as it now is but to make it a continuation of the table above it that contains the vertical line that you are concerned with, that way the cells would have to line up. Also consider the fact that it doesn't look so bad in IE. Consider leaving it alone. However, you could style the elements involved using IE specific styling for IE and allowing others to use your default. One way to do this is:
HTML Code:
<td style="width:20px!important;width:18px">
The first 20px value will be used by all browsers except IE. This is by far not the best solution but simply the most expedient.
Bookmarks