How can I make my background image cover the entire page on Debut theme?

Hello,

I’m using the Debut theme. I want to edit the background image to cover the complete website pages. I was able to upload the desired image, but it isn’t centered and doesn’t cover the full page. Any help would be greatly appreciated.

Wherever you have the background image set, add a background-size property:

body {
  background-image: url('path-to-your-image.jpg');
  background-size: cover;
  background-position: center center;
}