Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Owl Carousel 2 problem with overflow hidden Reply To: Owl Carousel 2 problem with overflow hidden

#276381
Atelierbram
Participant

when overruling the overflow: hidden with overflow: initial on .owl-carousel .owl-stage-outer, this will work for showing the tooltip popup. Now set overflow: hidden on #bodyContent to keep the slider from overflowing.

.owl-carousel .owl-stage-outer {
    /* override */
    overflow: initial;
}

#bodyContent {
    /* override */
    overflow: hidden;
}