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