You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

tool tip not positioning top center.. Created Nov 10, 2009

This thread is solved

Views: 986     Replies: 1     Last reply Nov 26, 2009  
You must login first before you can use this feature

toddpage

Posts: 3

Registered:
Nov 6, 2009

tool tip not positioning top center..

Posted: Nov 10, 2009

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.

<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...

qoop

Posts: 1

Registered:
Nov 26, 2009

try removing the trailing comma

Posted: Nov 26, 2009

Reply to: tool tip not positioning top center.., from toddpage
try removing the trailing comma


<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>