I'm trying to work with a responsive Bootstrap carousel, but for some reason, I seem to be getting a 'scroll' on mobile. Can someone please make a suggestion with this?
The link is here: https://mydigitalmidlands.co.uk/vogue-interiors.co.uk/
The slide images are set as backgrounds, and CSS is below:
.carousel-item {
height: 100vh;
min-height: 350px;
background: no-repeat center center scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
it seems to be the height property '100vh' which is the problem. if i lower this, we get a white border on the bottom.
is there any way to make the carousel slides responsive, without the scroll or white gap?