After spending 3-4 months learning HTML and CSS, I am now working on my first web page. However, I'm facing an issue where the footer is stuck to the slideshow and I can't seem to figure out how to position it at the bottom of the page. Any tips or advice on errors you may find would be greatly appreciated.
index.html
<!DOCTYPE html>
<html lang="en-us" class="no-js">...
sshow.css
.mySlides {
display: none;
}
.slideshow-container {...
css.css
html {
box-sizing: border-box;...
I have noticed that removing 'position: relative' from sshow.css resolves the issue but causes buttons in the slideshow to disappear. I also attempted using the following css:
html {
box-sizing: border-box;...
Any help is much appreciated. Thank you.