user3187469
user3187469

Reputation: 1531

How to make this tooltip overlay parent div?

JFIDDLE DEMO

As you can see on the jsfiddle link, I have a button with tooltip display on mouse hover. The problem is that tooltip area isn't overlaying the parent div and will display only inside the div.

I know that if I remove .panel-heading { overflow:hidden; } this will work but I need this css to stay for some of the responsive issues. I have tried adding .toolt { overflow:visible; } to tooltip div but it won't work.

Upvotes: 2

Views: 4421

Answers (1)

Krzysiek
Krzysiek

Reputation: 2495

You can change container of tooltip

$('.toolt span').tooltip({container:'body'});

Upvotes: 4

Related Questions