I have a simple landing page with a fullscreen background image and no other content. However, when I load this, the footer comes all the way up to the Navbar and stops the image from being fullscreen (image is fullscreen on pages with content). This is how it looks: https://i.stack.imgur.com/CtK4K.png
My CSS for the background image is the following:
.index {
background: url('/Content/images/home2.jpg') no-repeat center center;
background-size: cover;
min-height: 100%;
padding-top: 20px;
padding-bottom: 20px;
}
Also, my Navbar is getting in the way of this image which I also need to rectify.