Our submenus do not appear adjacent to the toplevel menu script.
Return to Recent Questions
Q:
Comprehensive Mental Health has a site license to \use Deluxe
Menu. We are currentlyrunning version 2.0.
Unless we set the topdy parameter to be -65, our submenus do not
appear adjacent to the toplevel menu. Below are our parameters and
our menu. What is causing this problem?
A:
It is possible that you have some problems with your css.
The problem is that the script can't get css properties of the object if they are described in separate .css block (or file).
In other words, you can't get the value of "position" attribute of the object if the object doesn't have this property within inline style
(style="position:absolute"). To get the value you should move .css style into style="" attribute.
Please, try to add your
css file -> inline css, for example:
You should add <DIV id=SiteMenu>
to the
style="position:absolute;"
So, you'll have:
<DIV id=SiteMenu style="position:absolute;">
Check that.
Return to Recent Questions
|