Hi Mike,
I'm not sure you're gonna like the answer.
ok, firstly - what's happening is that the technique the Css script is using to determine the menu position is not working. This is because
on your page it's inside a div, which in turn is set with absolute: positioning.
I should mention that positioning in css in a topic that starts of simple but gets really really complex very very quickly.
The short summary though is that the css you've "hand-coded" (using the web site designer) and the css (and javascript) in the
chrome class are not friends.
I've tried your app in NetTalk 5, using the "double drop" menu type - and that does work, so that's one simple way to go. In the long
run this might be the best solution.
Another approach is to rethink the strategy of trying to embed lots of dynamic stuff in the static pages. That can be done of
course, but doing so will require at least _some_ understanding of the css which is being generated. ie static stuff is fine - but
then you need to know what sort of static stuff is being genrated. It's not impossible to learn by any means, but if you want to mix
things like this I think some knowledge will almost certainly be required.
If you approached it from the other side - ie not
"embed dynamic in static" but rather
"embed static in dynamic"
then you'll still need to be somewhat familiar with html, and css, but to a vastly lower degree. However this approach is ultimately
"less flexible" so you may need to change your design to match.
Cheers
Bruce