I am still learning HTML programming and experimenting with new things. I have encountered a challenge that I need help with. I have a .png image set as the background of my HTML file. However, when I resize the screen, the sides of the picture get cut off.
background: url(img/Website_Background.png) no-repeat center center fixed;
background-size: cover;
My question is: how can I make it so that the middle part of the picture disappears (making the overall size smaller), while keeping the parts on the right and left sides visible? I hope this explanation makes sense.
Thank you for your assistance.