Hello there,
I'm currently attempting to incorporate background images in the following areas:
- underneath the body (to cover the entire page, even when scrolling)
- below the section with class "jumbotron text-center" or perhaps just under main role="main"
Despite my efforts, I haven't been successful. I've included some code snippets, but due to Bootstrap being used, I've linked a JSFiddle code.
:root {
--jumbotron-padding-y: 3rem;
}
.jumbotron {
background-image: url("gigi.jpg");
}
// More CSS code here...
You can view the complete code on JSFiddle for more details.