Is there some way to edit position or gravity ( I don't know what is correct) of tipsy? The plugin itself has some several options for gravity which you can assign throught script:
nw | n | ne | w | e | sw | s | se
I'm currently using s
position, as you can see in the fiddle: http://jsfiddle.net/cnLW8/
But I was wondering if the position of Tipsy can be edited in way that it shows at center of element. Not beside, above or beyond but relative close to center?
Currently, I'm doing this by setting css property of .tipsy
class to:
.tipsy{
margin-top: 30px;
}
But I think that there is some smarter solution, by editing it through the script or something else...
Any help or advice is welcome..