Well, you have not carried out the menu to its logical conclusion (by adding in the other submenus). If you do, this fix may not work for all drop downs but, I found that using this:
Code:
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+(ie4&&!window.opera? 0 : obj.offsetHeight)+"px"
instead of this:
Code:
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
did the trick for that one drop down in both browsers.
Notes: I have reservations about the page in general, it has no DOCTYPE so renders differently in FF and IE to begin with. Using a minimal DOCTYPE like:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
will allow you to design a more uniform looking page, once that is done, this problem may no longer exist although, simply adding the DOCTYPE does not fix it, I checked already.
Bookmarks