When I add a submenu, it appears separated by about 100 px down mouse over menus
Return to Recent Questions
Q:
I have been using Deluxe Menu quite a bit, but am now running
into a problem on a site I developed. When I add a submenu, it appears separated by
about 100 pixels down. In this case I left it on the Menu Item �Why
Maumelle� for you to look at.
Can you help me out?
A:
See, 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:relative"). To get the value you should move .css style into style="" attribute.
Please, try to add your
css file -> inline css, for example:
For example, you should add style="position:relative;"
to the
<DIV class=MainBody>
<DIV class=Banner></DIV>
<DIV class=Menu>
So, you'll have:
<DIV class=MainBody style="position:relative;">
<DIV class=Banner></DIV>
<DIV class=Menu style="position:relative;">
Now we have only such solution for this problem.
We'll try to fix this problem in the future versions.
Return to Recent Questions
|