Hi,
The header of this page is all images arranged in rows using div tags. I set img {vertical-align: bottom}
in the css to remove spaces below the images in FF which worked well. But, I am now left with a space above the bottom row of my header that I just can't seem to get rid of.
http://www.propellerheadgroup.com
The CSS is as such:
body {
margin-top: 0px;
text-align: center;
background-color: #0066ff;
}
img {
vertical-align: bottom;
}
#container {
width: 863px;
margin-left: auto;
margin-right: auto;
}
#header {
padding: 0px;
margin: 0px;
}
#content {
height: 552px;
background-image: url(../images/crown_full.jpg);
background-repeat: no-repeat;
}
#footer {
height: 44px;
background-image: url(../images/footer.jpg);
background-repeat: no-repeat;
}
Any suggestions??? :-/