Forum Moderators: not2easy
I have some divs that I basically want stacked on top of each other. On IE Mac the top div displays as it should but the div underneath it displays to its right instead of underneath it.
Here is the code:
#top{width:740px;
float:left;
}
td.logo{
}
td.address{
width:253px;
background-color:#660000;
color:#d9d6b5;
padding-left:10px;
font-size:11px;
}
#buttons{
width:740px;
}
#gap{
width:740px;
float:left;
}
Any ideas how i can fix this prob?
It displays correctly on IE pc
<div id="top">
<table border="0" cellspacing="0">
<tr>
<td class="logo"><img src="images/logo.gif"></td>
<td class="address">facsimilie: 03 3822 586<br>
mobile: 0274 711 718<br>
PO Box 18919<br>
email: <a href="mailto:info@example.com" class="header">info@example.com</a></td>
<td class="fawn"> </td>
</tr>
</table>
</div>
<div id="gap"></div>
<div id="buttons"><img src="images/buttons.gif" width="741" height="164"></div>
[edited by: tedster at 4:04 am (utc) on Sep. 2, 2005]
[edit reason] se example.com inside code [/edit]