This is the effect I\'m trying to achieve with Bootstrap 3 carousel
In
It seems the new Bootstrap version adds a margin-right: -100%
to each item, therefore in the responsive solution given in the most upvoted answer in here, this property should be reset, e.g.:
.carousel-inner .carousel-item {
margin-right: inherit;
}
A working codepen with v4.3.1 in LESS.