Hey there,
What do you mean stretch it to the bottom?
I took a look at the demo site because you provided no link to your own site to see what’s happening. On the demo site it goes to the bottom of the browser.
I’d guess you need more content to push the footer down.
If you have a link then I should be able to see what’s happening for you.
Take care.
Hey,
My website is http://www.jgv-kriegsdorf.de and I want that the white part stretch to the bottom.
Hey again,
You could probably use this CSS to make the body stretch:
body, html{ height: 100%;
}
Let me know if that works for you.
Take care.
Hey,
It doesn’t work for me. There happens nothing.
Regards
Try this:
html, body {
height: 100%;
}
#body-core {
height: 100%;
}
Hopefully that should sort it for you 🙂
Let me know.
Thanks a lot! It works great.
Excellent, thanks for letting me know! 🙂
Oh, it works on the first page. But on the pages which are longer than the 100%, the page is cutted.
I have the answer. Thank.
I’ve to add
overflow: auto;
Sure, or something like this (maybe with an auto added in):
#body-core {
min-height: 100%;
}
Glad you have it resolve 🙂
Take care.