|
ie6 white space under div
Any help would be greatly appreciated... As usual ie6 is playing up.
http://www.faciodesign.co.uk/pg101
The main overview area at the top has a large gap below the main content (ProdOverMid) div.
- Code: Select all
HTML:
<div id="ProdOverTop"></div>
<div id="ProdOverMid">
Text in here </div>
<div id="ProdOverBot"></div>
CSS:
#ProdOverTop {
background-image: url(gfx/ProdOverTop.jpg);
background-repeat: no-repeat;
height: 55px;
width: 1024px;
float: left;
margin-top: 5px;
}
#ProdOverMid {
background-image: url(gfx/ProdOverMid.jpg);
background-repeat: repeat-y;
height: auto;
width: 934px;
float: left;
padding-left: 45px;
padding-right: 45px;
line-height: 1.4;
min-height: 1px;
position: relative;
overflow: hidden;
}
#ProdOverBot {
background-image: url(gfx/ProdOverBot.jpg);
background-repeat: no-repeat;
height: 35px;
width: 1024px;
float: left;
position: relative;
}
Last edited by saltedm8; May 22nd, 2008 at 19:44.
Reason: added [code] tags
|