Posts

Showing posts with the label centering

Centering tooltip?

Centering tooltip? I'm trying to get my tooltip to be at the top & center of my page, regardless of window size and screensize. I have the following, but my tooltip appears on the top left corner: <link rel="stylesheet" href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css"> <script src="//code.jquery.com/jquery-1.10.2.js"></script> <script src="//code.jquery.com/ui/1.11.1/jquery-ui.js"></script> <style> area { display: inline-block; } </style> <script> $(function() { $( document ).tooltip({ position: { my: "center bottom", at: "center top", } }); }); </script> Can you please post you HTML code or create a jsfiddle? Using your JS code I can't reproduce the issue. –...