|
In IE the submenus of html tree menu are open down the page and go off the bottom of the screen.
Return to Recent Questions
Q:
Under Opera and Firefox html tree menu works fine but under IE the submenu’s are
open down the page and go off the bottom of the screen.
A:
Problem is that the html tree menu can't get the value of "position" attribute of the object if the object doesn't have this property within inline style
(style="PADDING-BOTTOM: 10px;"). To get the value you should move .css style into style="" attribute.
You should add style="PADDING-BOTTOM: 10px;"
to the
<DIV class=department-menu>
So, you'll have:
<DIV class=department-menu style="POSITION: absolute;PADDING-BOTTOM: 10px;">
Return to Recent Questions
Related:
- Apr 10, 2009 - I can not figure out how to fix the onmouseover examples from going off the page in Mozilla...
- Apr 19, 2009 - What can I do for people who have Javascript turned off so they can't use the menu horizontal css...
- May 16, 2009 - The alignment of the submenus is not correct in my menus web.
- May 22, 2009 - I would like to have links of javascript menu navigation to our website when javascript turned off.
- May 27, 2009 - The submenu of java script tree menu disappears, it goes BEHIND the flash and can't be seen.
- Jun 22, 2009 - Is it possible to have all of the submenus start at the top of the dhtml menu vertical.
- Jul 13, 2009 - Flash in Firefox disappears behind the submenus of css ul menu.
- Jul 21, 2009 - Images of menus in java script showing up as blank in the preview screen...
- Jul 27, 2009 - Is it possible to customize the direction of javascript menu dhtml submenus relative to the browser window...
- Aug 01, 2009 - I want that popup menu in javascript recognize when user has moused off the popup menu in javascript, and then disappear.
- Aug 31, 2009 - In IE 6.0 and Firefox, the submenus of my right click menu javascript are not visible
|