css - Help with footer background image -


possible duplicate:
how footer stay @ bottom of web page?

the 2nd background image on page isn't positioned... i'm struggling come fix... need footer @ bottom of page, always. min-height doesn't work because need remain @ bottom regardless of resolution.

is there css fix this?

-url removed-

sounds looking sticky footer.

http://ryanfait.com/sticky-footer/

* {     margin: 0; } html, body {     height: 100%; } .wrapper {     min-height: 100%;     height: auto !important;     height: 100%;     margin: 0 auto -142px; /* bottom margin negative value of footer's height */ } .footer, .push {     height: 142px; /* .push must same height .footer */ }  /*  sticky footer ryan fait http://ryanfait.com/  */ 

Comments

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -