css - display bootstrap popovers outside divs with overflow:hidden -
i've got question how bootstrap popover show above (outside) slider, has wrapper of overflow:hidden, can't seem around.
i'm using slider: http://owlgraphic.com/owlcarousel/ i'm using twitter bootstrap 2.3.2 popovers: http://getbootstrap.com/2.3.2/javascript.html#popovers
both work exception of overflow:hidden on carousel, similar issues this: popovers in bootstrap 2.2.1 https://github.com/twbs/bootstrap/issues/6122
my question is: has gotten work? i've done moves height , negative margin vertical height showing, if popover @ edge of wrapping dive, cut off @ edge. please let me know if need provide additional detail.
thanks steph
ok, figured 1 out.
i changed:
$('.popover-with-html').popover({ html : true, });
to:
$('.popover-with-html').popover({ html : true, container: 'body'});
and it's working.
container: 'body'
was key, hope helps someone.
thanks
steph
Comments
Post a Comment