|
Sub menus doesn't popout correctly in my menu pulldown template.
Return to Recent Questions
Q:
I’ve tried to change all available parameters, absolute and relative
positioning and so on. I can’t get the menu pulldown to display correctly.
I have to offset the topDX by -150 and so on just to fudge it into
a CLOSE position…I don't have such problem in the preview window
A:
menu pulldown can't get css properties of the object if they are described in separate .css block (or file).
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 style="position:absolute;"
to the
<DIV id=navholder>
So, you'll have:
<DIV id=navholder style="position:absolute;">
Return to Recent Questions
Related:
- March 21, 2009 - I am trying to get my submenu to be all black in my menu vertical...
- March 30, 2009 - Is there a way to optimize the html menu example to reduce the loading time for submenus?
- March 31, 2009 - Is there any way can we display submenu items on mouse over in horizontal javascript menu?
- Apr 03, 2009 - Our submenus don't appear alignment to the toplevel dropdown menu html.
- Apr 03, 2009 - I would like to change the height of the submenu items in the navigation site...
- Apr 04, 2009 - Is there a way to have an automatic line-break for large submenu items in drop down menu javascript?
- Apr 24, 2009 - How can I define which dhtml menu generator submenus should be multicolumn and wich one looks "normal".
- Apr 25, 2009 - How to work with menu and button maker and submenus in JSP?
- Apr 30, 2009 - Do you have a web navigation menu that allows the sub-items to 'slide' out from the main items?
- May 11, 2009 - When I add a submenu, it appears separated by about 100px down dependant dropdown menus.
- May 11, 2009 - I would like to have each sub menu with width 100px in my Menu and navigation.
|