Hi all - still working on my first CSS site. The posts here have been a big help, but I can't figure this out:
Style sheet:
The border is around the footer for debugging purposes.
Notice how the footer of:
looks in FF and in IE - it looks as if the lower left hand corner of the box is at the same position in FF as the upper left hand corner of the box in IE.
If absolute doesn't mean absolute, what does?
Here's the relevant portion of the page in case you don't want to view source.
Thanks for any insight you may be able to provide. This one seems like it should be simple, but it's driving me crazy.
/Wendy
Style sheet:
Code:
#footer {
font-family: Arial;
color: #171718;
font-size: 11px;
font-weight:normal;
}
#homepage {
/* center main_div in firefox, nn, opera : */
margin : 0 auto 0 auto;
width : 815px;
height : 820px;
border : none;
position : relative;
}
#footermenu {
border : medium solid #66FF33;
position : absolute;
vertical-align : top;
top : 690px;
left : 40px;
width : 390px;
height : 14px;
}
The border is around the footer for debugging purposes.
Notice how the footer of:
looks in FF and in IE - it looks as if the lower left hand corner of the box is at the same position in FF as the upper left hand corner of the box in IE.
If absolute doesn't mean absolute, what does?
Here's the relevant portion of the page in case you don't want to view source.
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<div id="homepage" align="left">
.....
<div id="footermenu" align="center"><p id="footer">
<a href="<? echo $home; ?>">Home</a> |
<a href="<? echo $contact; ?>">Contact</a> |
<a href="<? echo $aboutus; ?>">About Us</a> |
<a href="<? echo $links; ?>">Links</a> |
<a href="<? echo $privacy; ?>">Privacy</a> |
<a href="<? echo $administration; ?>">Admin</a></p>
</div>
</div>
</body>
</html>
Thanks for any insight you may be able to provide. This one seems like it should be simple, but it's driving me crazy.
/Wendy