When I place drop down menu scripts in a CSS div element the submenu's all drop down a couple pixels
Return to Recent Questions
Q:
When I put drop down menu scripts inside a CSS-defined
div element (for absolute page placement) the submenu's all drop down a
couple hundred pixels.
A:
The problem is that the script of drop down menu scripts can't get css properties of the object if they are described in separate .css file.
You can't get the value of "POSITION: absolute" 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 style="POSITION: absolute;"
to the
<div id="menu">
So, you'll have:
<DIV id="menu" style="POSITION: absolute;">
Try that.
Return to Recent Questions
|