Is there a way to adjust the position or gravity of Tipsy? The plugin offers various options for gravity that can be set through the script:
nw | n | ne | w | e | sw | s | se
Currently, I have set it to s
position, as shown in this demo: http://jsfiddle.net/cnLW8/
However, I am curious if there is a way to center Tipsy relative to the element, rather than positioning it beside or above it.
Right now, I achieve this by adjusting the css property of the .tipsy
class with:
.tipsy{
margin-top: 30px;
}
I believe there might be a more efficient solution, either through script modification or another method...
Any suggestions or guidance would be greatly appreciated!