After successfully installing the owl carousel plugin, I noticed that it does not scale with the viewport size. This has been bothering me as I want the carousel to resize along with the items when the viewport becomes smaller. I attempted to set responsive: "false" and then defined a custom percentage width for the .owl-item class using !important. While this did work for the items themselves, they did not scale as I had hoped because the sliding stage or .owl-wrapper is fixed in PX.
I even tried overriding the .owl-wrapper width to 400% but encountered a new issue - I was unable to slide to the last item. I have prepared a clean JSfiddle for reference.
.owl-carousel .owl-item{
float: left;
width: 4% !important;
}
.owl-carousel .owl-wrapper{
width: 400% !important;
}
If anyone could provide insight into what I might be doing wrong, I would greatly appreciate it. Is it simply not possible to achieve a fully liquid design with the owl carousel? Perhaps this issue only arises when attempting to create a liquid image slider?