|
Sub menus doesn't popout correctly in my dropdown menu code 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 dropdown menu code 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:
dropdown menu code 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 javascript menu examples...
- March 30, 2009 - Is there a way to optimize the css drop down menus to reduce the loading time for submenus?
- March 31, 2009 - Is there any way can we display submenu items on mouse over in javascript dropdown menu?
- Apr 03, 2009 - Our submenus don't appear alignment to the toplevel floating window javascript.
- Apr 03, 2009 - I would like to change the height of the submenu items in the javascript submenu...
- Apr 04, 2009 - Is there a way to have an automatic line-break for large submenu items in over drop down menu?
- Apr 24, 2009 - How can I define which css list menu submenus should be multicolumn and wich one looks "normal".
- Apr 25, 2009 - How to work with menu website and submenus in JSP?
- Apr 30, 2009 - Do you have a drop down menu in html 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 java drop down menus.
- May 11, 2009 - I would like to have each sub menu with width 100px in my Menu html javascript.
|