Fri, 2004-08-06 16:25
http://www.binitbharadia.co.uk/css/
Just as i have a large black header on this page i would also like to have a black footer on it.
How would i do this as i seem to be getting problems finding a solution.
Many Thanks
Fri, 2004-08-06 16:29
#1
How to put a footer on this page.
Yours is simple, you can just create another div similar to the header, as I see you already did in the css. Try this:
#footer {
clear: all;
width: 100%;
background: url(yourimage.gif);
height: 80px;
}
then just type it in after all the other divs in the html.
Fri, 2004-08-06 18:51
#2
How to put a footer on this page.
Hi
Many Thanks, that works.
I didn't know of the 'clear' property.
Do you know how to keep the footer 'glued' to the base of the page.
On large resolution the footer moves up with content.
Thanks
Sat, 2004-08-07 13:44
#3
How to put a footer on this page.
You can use bottom: 0, that should do it.