Reputation: 1952
I have developed an extension with links inside, once user hover over these links a tooltip appear describing the link, the problem when the link close to the border of the extension popup the tooltip appears but part of it not all the contents inside these tooltip, I think because it's below the frame of the popup.
Is it possible to make the tooltip appears above the frame of the popup?
Regards,
Upvotes: 1
Views: 715
Reputation: 8472
If you're implementing tooltips with title=
attributes, you can't control where they are positioned. However you can create your own tooltips in JS and position them as within the bounds of the popup, using something like Tipped. A quick search will bring up hundreds of other libraries.
Upvotes: 4