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