I need to customize BS carousel, to make images size responsive corectly. I need the carousel to adapt to the height of the active slides images initiel height. When the viewpor
To use images on Bootstrap carousel of different sizes and to do the followings, all at the same time,
Remove the img tag & add a new class instead, say slide1
then add the following CSS code for slide1 class,
.slide1{
height: 500px; /* your desired height for this slide */
background: url(/img/your-img.jpg) no-repeat center center;
background-size: cover;
}
You may also configure this heights for different window sizes.