Artur Haddad Posted October 31, 2012 Report Share Posted October 31, 2012 (edited) No final do meu site fica um espaço branco entre o footer e o final da página, nas resoluções menores o footer fica no fim normalmente.Alguém sabe como resolver este problema?#bottom-container{ width:100%; height:auto; background-color:#65696e; float:left; padding-bottom: 15px; }#footer-content{ width:960px; height:120px; background-image:url(images/footer-glow.png); background-repeat:no-repeat; background-position:top center; margin:0px auto;}LINK DO SITE: http://mgdownhill.com.br/ValeuEDIT:Resolvido, usando http://ryanfait.com/resources/footer-stick...bottom-of-page/CSS:* { margin: 0; } html, body { height: 100%; } .wrapper { min-height: 100%; height: auto !important; height: 100%; margin: 0 auto -4em; } .footer, .push { height: 4em; } HTML: <html> <head> <link rel="stylesheet" href="layout.css" ... /> </head> <body> <div class="wrapper"> <p>Your website content here.</p> <div class="push"></div> </div> <div class="footer"> <p>Copyright (c) 2008</p> </div> </body> </html> Edited October 31, 2012 by Artur Haddad Quote Link to comment Share on other sites More sharing options...
Question
Artur Haddad
No final do meu site fica um espaço branco entre o footer e o final da página, nas resoluções menores o footer fica no fim normalmente.
Alguém sabe como resolver este problema?
#bottom-container{
width:100%;
height:auto;
background-color:#65696e;
float:left;
padding-bottom: 15px;
}
#footer-content{
width:960px;
height:120px;
background-image:url(images/footer-glow.png);
background-repeat:no-repeat;
background-position:top center;
margin:0px auto;
}
LINK DO SITE: http://mgdownhill.com.br/
Valeu
EDIT:
Resolvido, usando http://ryanfait.com/resources/footer-stick...bottom-of-page/
CSS:
HTML: Edited by Artur HaddadLink to comment
Share on other sites
0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.