I am currently developing a website and have implemented a wrapper for the footer. My goal is to create a sticky footer, but when I minimize the screen, the footer ends up overlapping with the content and header.
#footerWrapper {
height: 177px;
bottom: 0;
position: absolute;
width: 100%;
}
The current solution positions the footer at the bottom of the page regardless of screen size, which is what I want. However, when I minimize the screen and move it up, the footer remains absolute and stays on that specific page.
My desired outcome would be for the footer to stay on the particular page rather than being fixed in one position. Any suggestions or ideas on how to achieve this?