I am struggling with the formatting of a webpage that features a header and footer. Currently, my background image extends behind both the header and footer, cutting off approximately one-quarter of the top and bottom of the image. Below is the CSS code I am using for the background image:
background-image: url('http://codegamer.net/images/majestic/patterns/lol2.jpg');
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
My goal is to adjust the positioning of the image so that it starts below the header and ends above the footer, allowing the full image to be visible.