How can I make my footer underlap the main content area with CSS positioning? -
here's link page i'm having problem making:
http://willhost.webs.com/first%20css%20page/homepage%20actual.html
i want green footer vertically underlap grey content box 39px. can setting footer position property 'relative' , entering top value of '39px' (and increasing z-index of grey box) still leaves space footer meant go in normal flow - don't wan't that.
so seem setting footer absolute positioning answer. when so, footer disappears off screen?!
i started web coding month ago please forgive me if noobish question.
any appreciated!
cheers, w
try apply margin-top
#footer { background: #95d704; font: normal 13px 'museo sans 100'; height: 97px; margin-top: 39px; }
Comments
Post a Comment