Hi,
I've got a footer on my page that should be at the bottom of the page, but instead it sits just under the bottom of the navigation bar, which is fine when there is little text on the page, but if there is an overflow of text, the footer just sits on top of it or below it - depending on 'position'.
This is my CSS code for the footer:
#footer {
color: #fff;
text-align: center;
width: 800px;
display: block;
padding-top: 3px;
height: 45px;
background: url(../../images/footer.png) repeat-x;
float: right;
position: relative;
border-top: 2px solid #000;
font: 14px "Helvetica Neue";
}
I've also posted a screenshot I'm hosting on my other site, as this isn't live at the moment. It won't be there forever.
Any ideas on how to get it at the bottom of the page?