It seems that playing with overflow is impossible, as the plugin already uses it.
You can achieve some interesting results by setting both X and Y overflow to visible: demo (jsfiddle)
.carousel-container:hover { overflow-y: visible!important; overflow-x: visible!important; }
However, overflow X destroys the plugin style.
But this doesnβt work at all on google chrome, so my advice is not to use this plugin.
You will get almost the same problem with another plugin, because CSS-x overflow: visible; and overflow-y: hidden; causing a scroll problem
Demo with Bootstrap Carousel (jsfiddle)
Perhaps you should consider using some kind of (home?) JavaScript, as the carousel still requires.
source share