JingleBells
FH is my second home
- Joined
- Mar 25, 2004
- Messages
- 2,224
I've just been tinkering with my website - http://www.pete-b.co.uk/ and have been getting extremely pissed off by the "phantom gaps" that IE seems to insert on the side menu and bottom bit with the time as this screenshot shows - http://www.pete-b.co.uk/pics/evilIE.jpg (note red bits). It should look like this - http://www.pete-b.co.uk/pics/niceFF.jpg I've removed all the padding from the elements and the gaps still appear. Any help would be appreciated as I cannot find what the problem is, the site has been tested in FF1.0 Windows and Konqueror & Epiphany on Linux (not sure what version). My CSS is
Code:
body {
background-color: #FF9;
}
ul {
margin:0px;
padding: 0px;
list-style-type: none;
border: 2px solid #ccc;
border-bottom: none;
background: #F00;
}
li {
margin: 0px;
padding: 0px;
text-align: center;
background: #FF9;
color: #009;
width: 7.5em;
text-decoration: none;
border-bottom: 2px solid #ccc;
letter-spacing: 1px;
font: normal normal 500 medium arial, sans-serif;
}
ul li a {
margin: 0px;
padding: 0px;
color: #009;
text-decoration: none;
display: block;
}
ul li a:hover {
color: #009;
background: #ccc;
}
#outerContentPane {
position: absolute;
top: 10px;
left: 10em;
width: 80%;
border: groove #FF9;
background-color: #009;
margin-bottom:50px;
}
#marginned {
background-color: #FF9;
border: 0.5em solid #009;
padding: 0px 10px;
}
#outerbox {
position: absolute;
top: 10px;
left: 4px;
border: groove #FF9;
background-color: #009;
padding: 0.5em;
}
#bottomBox {
position: absolute;
top: 27em;
left: 4px;
border: groove #FF9;
background-color: #009;
padding: 0.5em;
}
.hide { display: none ; }
.centered { text-align: center; }