Hi,
I'm coding my new site, which of course works fine in IE, but Netscape 7 hoses it.
Below are the relevant styles. I put a border on every div so the problem is easier to troubleshoot. The issue is that divs are overlapping and the #footer div is not sitting at the bottom of #frame.
Please see accessglobe.com/newSite
Look at it in IE 6, then in Netscape 7 to see what the problem is. The style sheet is at accessglobe.com/newSite/accessglobe_style.css
Thanks!
I'm coding my new site, which of course works fine in IE, but Netscape 7 hoses it.
Below are the relevant styles. I put a border on every div so the problem is easier to troubleshoot. The issue is that divs are overlapping and the #footer div is not sitting at the bottom of #frame.
Please see accessglobe.com/newSite
Look at it in IE 6, then in Netscape 7 to see what the problem is. The style sheet is at accessglobe.com/newSite/accessglobe_style.css
Thanks!
Code:
body {
text-align:center;
margin:0px;
background-color:#F3F1F1;
}
/*main DIVS */
#frame {
width:700px;
height:auto;
margin-right:auto;
margin-left:auto;
margin-top:20px;
padding:0px;
text-align:left;
border:1px solid black;
background-color:#D6D3DE;
}
#flag {
background-color:black;
width:700px;
height:109px;
}
#nav {
background-color:black;
width:700px;
height:19px;
border-top:1px solid #CC0000;
border-bottom:1px solid #CC0000;
}
#main {
width:700px;
margin-top:15px;
float:left;
border:1px solid red;
height:inherit;
}
#content {
width:666px;
padding:0px 0px 0px 34px;
float:left;
border: 1px solid green;
}
#bodyText {
width:445px;
float:left;
border:1px solid blue;
}
#sideBox {
width:155px;
float:left;
margin-left:30px;
border:0px dashed gray;
padding:2px;
}
#footer {
width:700px;
/*background-image:url(images/footerBar.gif);*/
background-color:white;
height:17px;
border: 1px solid yellow; }