I am having a problem with the tooltip not showing up top center.
test Page:http://test.pancieradesign.com/?mainID=2&portCatID=1
I puts the tooltip to the right and down.
here is the script.
--------------------------------------------------------------------
Found the fix.
after reviewing the stylsheet, it wound up being "position: relative;" assigned the div that the tooltip was nested in. After removing "position: relative;" it now aligns correctly...
test Page:http://test.pancieradesign.com/?mainID=2&portCatID=1
I puts the tooltip to the right and down.
here is the script.
<script>
// What is $(document).ready ? See: http://flowplayer.org/tools/using.html#document_ready
$(document).ready(function() {
});
$(function() {
// initialize scrollable
$("div#infinite").scrollable({size: 10, clickable: false, speed: 800, api: true});
//$("div#infinite").circular();
$("div#infinite").mousewheel();
$("div#infinite img").tooltip({tip: '#thumbInfo',position: 'top center',});
});
</script>
--------------------------------------------------------------------
Found the fix.
after reviewing the stylsheet, it wound up being "position: relative;" assigned the div that the tooltip was nested in. After removing "position: relative;" it now aligns correctly...
