Try the following:
On the index page, add the following new div below the <body> tag:
The new div is closed by a stray "close wrapper" tag.
On your css sheet, make the following changes:
Code:
below line 19:
body:before { /* Opera and IE8 "redraw" bug fix */
content:"";
float:left;
height:100%;
width:0;
margin-top:-32767px;
}
#outer {
min-height:100%;
margin:-70px auto 0px; /* negative of footer height */
}
Line 126:
#header {
height: 122px;
background: #FFF;
margin: 0 auto;
border-top:70px solid #fff; /* same value as footer height */
}
Line 285:
.copyright {
width:285px;
margin:0px 0px 0px 650px; /* this probably fixes the original culprit */
}
Bookmarks