My challenge is to align an image slideshow on top of my footer, with the bottom edge of the slider touching the top edge of the footer. Despite using position: fixed and bottom: 0 properties, it appears that the positioning is off - aligning the top edge to the bottom of the page instead.
When I set Position: fixed and bottom: 0; for the slideshow, it unexpectedly shifts the div all the way down to the bottom of the page, making it disappear as if sticking at the top edge rather than the desired bottom edge.
.slideshow {
position: fixed;
bottom: 0px;
width: 100%;
padding-bottom: 85px;
}
.footer {
position: fixed;
bottom: 0;
background: #0d9196;
width: 100%;
height: 80px;
}
I anticipated the two divs to be stacked neatly, but what actually happens is the entire slideshow div slides off the page beneath the footer. Any advice or guidance on how to resolve this issue would be greatly appreciated!