Hi there,
I have just updated to internet explorer 7 and whilst I'm fairly impressed my site now has some faults...
Firstly the height of the site is duplicated and there is lots of whitespace in the mainframe area and secondly a margin i put along the left side of my right side div is now not displaying!!
Would appreciate any ideas as to what to change to get this right in IE7 aswell as styaing ok in IE6...
I only just mastered it for IE6!! Doh!
Thanks!
Here is my css below...
Code:
* {
padding: 0;
margin: 0;
}
body {
background-color: #E8F0FF;
font-family: Arial, Helvetica, sans-serif;
color: #666666;
font-size: 11px;
}
#wrapper {
width: 804px;
margin: 0 auto;
Apply overflow: hidden;
}
#navbar {
border: 1px solid #ccc;
margin: 0px 5px 0px 5px;
padding: 4px;
background-color: #FFFFFF;
}
#header {
/*border: 1px solid #ccc;*/
margin: 20px 5px 0px 5px;
height: 122px;
padding: 10px;
background-color: #FFFFFF;
background-image: url(../Images/Header.jpg); background-repeat: no-repeat;
}
#leftcolumn { /* Parent Wrapper for inside boxes */
margin: 0 0px 0px 5px;
display: inline; /* IE Hack */
width: 20%;
float: left;
min-height: 690px;
padding: 5px;
/*border: 1px solid #ccc;*/
background-color: #FFFFFF;
background-image: url(../Images/COLUMN.jpg); background-repeat: no-repeat;
padding-bottom: 10000px;
margin-bottom: -10000px;
}
* html #leftcolumn {height:690px} /* IE Min-Height Hack */
#centercolumn { /* Parent Wrapper for inside boxes */
/*border: 1px solid #ccc;*/
margin: 0px 0px 0px 0px;
display: inline; /* IE Hack */
padding: 5px;
width: 55%;
float: left;
min-height: 690px;
background-color: #FFFFFF;
padding-bottom: 10000px;
margin-bottom: -10000px;
}
#centercolumn2 { /* Parent Wrapper for inside boxes */
/*border: 1px solid #ccc;*/
margin: 0px 0px 0px 0px;
display: inline; /* IE Hack */
padding: 6px;
width: 76%;
float: left;
min-height: 690px;
background-color: #FFFFFF;
padding-bottom: 10000px;
margin-bottom: -10000px;
}
* html #centercolumn {height:690px} /* IE Min-Height Hack */
#rightcolumn {
margin: 0 5px 0px 0px;
padding: 5px;
display: inline; /* IE Hack */
width: 20%;
float: left;
/*border: 1px solid #ccc;*/
background-color: #FFFFFF;
min-height: 690px;
padding-bottom: 10000px;
margin-bottom: -10000px;
}
* html #rightcolumn {height:690px} /* IE Min-Height Hack */
#footer {
background-color: #FFFFFF;
margin: 0px 5px 5px 5px;
display: inline; /* IE Hack */
padding: 4px;
float: left;
width: 97.7%;
}
#adverts {
padding: 8px;
float: left;
width: 97.7%;
}
Last edited by The Hick Man : 11-18-2006 at 10:04 AM.
|