I have read a lot on google and here and I can’t find a solution, I don’t get it why do I get the scroll bar and I need to scroll down in order to see the footer, at this moment I don’t have any content and it’s not necesary to scroll down, as you can see here: [URL REMOVED], If I remove margin-top fro the logo than it works, but I need that margin-top there.Can you guys help me please to find a solution.
Best Regards.
You gave
bodya height of 100% and#wrapa min-height of 100%, so the footer is pushed outside of the viewwindow (which is what 100% height is). Try removing or lowering the value of min-height on#wrapand the footer will come up.Edit:
If you’re going to use the css from the page you linked, you can’t add any vertical margin, padding or borders on anything. You are doing this on
#logoand that’s what’s messing things up.It seems you’re doing this because you want the content to have a certain background, but you don’t want this behind the logo. You can solve this by adding another div inside
#wrapthat wraps the content and give this the background. Leave the header white.Summary:
#logo.#wrapto -54px.#wrapfor the background.That should solve your problem.