Hi! When resizing the window, the background image doesn't cover completely at the bottom.

I would recommend the following:
- Remove the inline style at
<div class="image-container set-full-height" style="background-image: url('assets/img/wizard.jpg')">
- And put a block style as
<style>
body {
background: url('assets/img/wizard.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
</style>
It worked for me.
Hi! When resizing the window, the background image doesn't cover completely at the bottom.
I would recommend the following:
<div class="image-container set-full-height" style="background-image: url('assets/img/wizard.jpg')">It worked for me.