I'm facing a bit of a challenge with this HTML issue.
Currently, I have a webpage and I want the footer to always remain at the bottom with a certain distance from the elements above it, specifically the Twitter and G+ divs.
Please refer to the CSS within @media (min-width:481)
.
I attempted the following:
html, body{
height: 100%;
}
.fuss{
position: absolute;
bottom: 0;
}
Although this solution works for larger screens, when I resize the window to a smaller 15-inch laptop screen, the footer ends up overlapping my Twitter and G+ elements. Why is this happening?
You can view the page here: . The footer behaves correctly on bigger screens, but on smaller screens, it overlaps other elements instead of staying at the bottom.
I would appreciate any assistance you can provide.
Thank you!