Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to show popover that is hiding behind navbar

I am new to Bootstrap and Angular. In my webpage there is a button and i am providing a popover for a span like this

<span popover="Download Project History" popover-trigger="mouseenter" tooltip-placement="top" style="padding: 5px" translate="DOWNLOAD">DOWNLOAD</span>

But its getting hidden under navbar.

Based on my googling i found to provide data-container="body" in the html element. But its not working too.

Can anyone please help me?

Thanks

like image 456
Arjun Menon Avatar asked Aug 05 '14 06:08

Arjun Menon


1 Answers

tooltip-append-to-body="true"

attaches the tooltip to the body and makes it visible.

like image 108
Won Jun Bae Avatar answered Sep 22 '22 21:09

Won Jun Bae