bootstrap-wizard icon indicating copy to clipboard operation
bootstrap-wizard copied to clipboard

Background image resizing issue

Open akshaybabloo opened this issue 8 years ago • 1 comments

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

screen shot 2016-11-16 at 4 38 17 am

I would recommend the following:

  1. Remove the inline style at <div class="image-container set-full-height" style="background-image: url('assets/img/wizard.jpg')">
  2. 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.

akshaybabloo avatar Nov 15 '16 15:11 akshaybabloo

@akshaybabloo thank you for pointing out. Yes, you're right, there is an issue with the image, we will fix that based on your code in our next update.

All the best, Alex

alexandru-paduraru avatar Nov 18 '16 11:11 alexandru-paduraru