Change Position of the Tipsy Box
From IThemes Codex
To change the position of the tipsy box, you can either change the "Edge offset" value in Tipsy group settings, or modify the #tiptip_holder
property in the style.css file of your folder of the layout you have currently chosen in Tipsy wp-content/plugins/tipsy/layouts/YOUR-CHOSEN-LAYOUT-NAME
Edit the style.css file and the entire section below to anything you like:
#tiptip_holder { display: none; position: absolute; top: 0; left: 100px; z-index: 99999; }
Top and left values change the location of the entire Tipsy tooltip. In the above example, left: 100px;
basically moves the entire Tipsy 100 pixels to the right.