If I understand you, you want to center the content that drops down from this menu. I think that would look bad but, it is your page. The way to do that is to find these two lines in the script:
Code:
dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
change them to this:
Code:
dropmenuobj.x=75
dropmenuobj.y=20
the x is how many pixels from the left the drop down will be, the y is how many pixels down it will appear. These values worked for the example on the developer's view page. You may have to adjust them to get the effect you want with your menu. Just as an explanation, the way the code is without these modifications allows these drop downs to appear adjusted for where the were called from on the text links.
Bookmarks