I misunderstood the question, I think. If you mean having the menu static on the page while the page is scrolled, I stand by my original response even if the documentation does not mention it. If you mean the 'float' function whereby the menu is supposed to stay in the same position relative to other page elements, this does not appear to work (in FF) even in the online demo for that (see below).
Care should be taken however, be sure that you have configured the 'float' as per instructions in the tutorial.htm that comes in the distribution zip file.
Still, I notice that the example3.htm on Dynamic drive, which is supposed to demonstrate the float function, when viewed at different window sizes, does not work as I would expect in FF. This seems to be due to FF not reloading the page on resize, something IE does do and something for which the current FF has built in safeguards against. May be time for another update. But, as this is a third party menu, you will need to check with the author.
If this is the problem you are talking about, changing this line in dom-build.js from:
Code:
window.onresize = new Function("location.reload();");
to:
Code:
window.onresize = function(){setTimeout("location.reload();",0)};
will take care of it.
Bookmarks