Forum Moderators: not2easy
Problem is that this appears at the bottom (Great!) but if you resize or scroll then the footer moves up the page. So it's like it's calculating the browser size and then placing it at the bottom of that rather than really putting it at the bottom of the page.
I am sure there is an easy fix for this. Anyone? ...
#footer {
bottom: 0;
position: absolute;
background-color: #333;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
color: #999;
width: 751px;
text-align: center;
padding: 5px;
word-spacing:3px;
}
The footer you make width: 100%; and the spacer should push the footer to 95% from the top. If the content is longer, the content of course pushes the border lower.
J.