|
In IE the submenus of javascript drop down menus are open down the page and go off the bottom of the screen.
Return to Recent Questions
Q:
Under Opera and Firefox javascript drop down menus 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 javascript drop down menus 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 pure css menus 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 dynamic javascript menus...
- May 16, 2009 - The alignment of the submenus is not correct in my script menu horizontal.
- May 22, 2009 - I would like to have links of mouse button menu to our website when javascript turned off.
- May 27, 2009 - The submenu of javascript floating window 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 mouse over drop down menu.
- Jul 13, 2009 - Flash in Firefox disappears behind the submenus of dhtml horizontal menu.
- Jul 21, 2009 - Images of dhtml menue showing up as blank in the preview screen...
- Jul 27, 2009 - Is it possible to customize the direction of css menu background submenus relative to the browser window...
- Aug 01, 2009 - I want that css menu navigation recognize when user has moused off the css menu navigation, and then disappear.
- Aug 31, 2009 - In IE 6.0 and Firefox, the submenus of my horizontal css menu are not visible
|