Find these 2 lines:
Code:
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
And change them to this:
Code:
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+50+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+50+obj.offsetHeight+"px"
Which will add 50 to the position from left and 50 top position from top. To make it 65px to the left and 85px up as you suggested, you could do this:
Code:
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")-65+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")-85+obj.offsetHeight+"px"
cr3ative
Bookmarks