Looks Different on a PC!!
Posted: Tue Jul 20, 2004 10:47 pm
Would there be a reason the following code adds extra space at the bottom of my navigation on a PC but not a MAC?
I'm including this into the main page.
Could some please help me out with this problem! Everything looks great on IE on my MAC but puts a space at the bottom of my navigation on IE on my PC.
Take a look:
http://www.selecthealthinsurance.com/home
Please Help!
e-rase
Code: Select all
<table width="720" height="81" align="left" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="214" height="81" rowspan="2" align="left" valign="top"><a href="/home"><img src="/shared/images/img_logo.jpg" width="214" height="81" border="0"></a></td>
<td height="53" colspan="2" align="left" valign="top"> </td>
</tr>
<tr>
<td height="28" align="left" valign="top">
<?php
$arrNav = array('home','quote','coverage','about','contact');
foreach($arrNav as $nav) {
$dispNav .= "<a href="/" . $nav . "/index.php"";
if($navSection == $nav) {
$dispNav .= "><img src="/shared/images/nav_" . $nav . "_marker.gif" alt="" . $nav . "" border="0">";
}
else {
$dispNav .= "onMouseOver="navover('" . $nav . "');return true;" onMouseOut="navout('" . $nav . "');return true;"><img name="" . $nav . "" src="/shared/images/nav_" . $nav . ".gif" alt="" . $nav . "" border="0"";
}
$dispNav .= "</a>";
}
print $dispNav;
?>
</td>
<td width="6" height="28"> </td>
</tr>
</table>Could some please help me out with this problem! Everything looks great on IE on my MAC but puts a space at the bottom of my navigation on IE on my PC.
Take a look:
http://www.selecthealthinsurance.com/home
Please Help!
e-rase