Tooltip Not Showing Entirely - How To Overflow?

0
Hi guys, The tooltip is not showing entirely on the message box below. I think it has to do with the “overflow” CSS setting. I’ve seen this on stackoverflow, which I presume is the case, but I haven’t managed to make it work. https://stackoverflow.com/questions/8837050/allow-specific-tag-to-override-overflowhidden The only thing the tooltip inner class cannot be changed, because that’d change the behavior across all tooltips across the platform. So it must be done with CSS on those elements (containers, tooltip) on the image below. Any clue? Thanks!
asked
1 answers
2

You could add a class to your container / tooltip and then write a css selector that only targets the inner tooltip class if it's within a div with the class you specified. That should help ensure that only this particular tooltip is changed, and not all the others.

answered