Jumbotron background

Hi,

Im trying to put a background image in a jumbotron that needs to extend its width throughout the whole screen and scale when required.

Please help.

You'd probably use the background-size property with cover value (https://www.w3schools.com/cssref/css3_pr_background-size.asp)

.jumbotron {
  background-image:url("image.jpg");
  background-size:cover;
}

But at least you can go to that site and see what options there are and can try them out.

Saj