Reputation: 11746
I'm using the owl carousel 2 plugin and I'm having issues trying to place the prev and next buttons to the right and left of the scroller. I'm using the navContainer argument allowing me to use a custom nav controller.
The current navContainer looks like this:
#customNav {
position:absolute;
top: 0px;
}
#customNav .owl-prev {
top: 55px;
left: -20px;
}
#customNav .owl-next {
top: 55px;
right: -20px;
}
I'm trying to place the left controller on the left of the carousel and the next controller to the right.
Here is my current code in jsfiddle
Any idea what I'm missing? Should the navController container be relative?
Upvotes: 0
Views: 1467