CSS Quick Question

Soldato
Joined
6 Jan 2005
Posts
3,633
Location
Cambridge
Code:
#copyright {
width:100%;
border-top:1px solid #999999;
float:left;
padding-bottom:0px;
margin-bottom:0px !important;
margin-top:50px;
color:#999999;
}

I've been trying for ages to get this 'box' to stay at the bottom of the page, but I don't know how to make it ALWAYS be at the bottom of the page.

Could anyone help with getting it to stay down?

Thanks in advance,
Paul
 
make sure these are in the CSS

#footer {
position:absolute;
bottom:0;
}

Put the footer DIV within your content DIV, it will then push it to the bottom of the content DIV permanently
 
Thanks all.
Soon my website will be complete and I will have to make another thread to ask you what you think :)
 
Back
Top Bottom