|
Hi,
I have some extra space at the bottom of a page I am re-designing (I'm not too well versed in CSS). Can someone please take a look at this code and tell me how I can get rid of the excess? Also, any suggestions on cleaning up the CSS would be greatly appreciated. Thanks!
<style type="text/css">
body {
background: #400000;
font: 78%/1.5 arial, helvetica, serif;
text-align: center;
padding: 0;
margin: 1em;
height:500px;
}
#container {
width: 740px;
text-align: center;
margin: 0 auto;
}
#header {
position: relative;
left: 0px;
top: 0px;
}
#mainimage {
position: relative;
left: 258px;
top: -171px;
}
#smallimages {
position: relative;
left: 487px;
top: -354px;
}
#tabbedcontent {
position: relative;
top: -26em;
left: 22em;
}
#footer{
position: relative;
top: -51em;
left: 0em;
}
#backimage{
position: relative;
top: -51.0em;
z-index: -1;
text-align: center;
left: -10px;
}
#leftnav{
position: relative;
top: 160px;
left: -277px;
}
</style>
|