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
I had the same problem adding the class "img-responsive" in the image tags made images responsive
My caption
but the problem was with the slider height so I need to add a media query to resize the control div
@media (max-width: 800px) {
.carousel-control{
height:350px;
}
}
this media query is just an example, customize it to suit your needs, I hope that will help