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