Admin menu displaying below content in IE 6
sender - November 18, 2006 - 11:05
| Project: | Adminmenu Dhtml |
| Version: | 4.7.x-1.x-dev |
| Component: | Miscellaneous |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
When accessing the dhtml admin menu via IE, it places itself inside the footer section and not, as in Firefox, at the top of the document.

#1
This behavior only happens in IE 6 for me. IE 7 works fine.
I will look into the CSS this afternoon to see if I can find a fix.
(I'm using the Barlow theme, but I will try others to see if it matters)
#2
I had a look at the CSS for both the "Small top oriented..." and the "Ted Serbinski's..." menu types and they both use position: fixed, instead of position:absolute.
Change this in small.css (for the small menu type):
#admin-nav {background:#ebe2d2;
border-bottom:1px solid #a3a3a3;
position: fixed;
top:0;
left:0;
width:100%;
margin:0 0 0;
}
to
#admin-nav {background:#ebe2d2;
border-bottom:1px solid #a3a3a3;
position: absolute;
top:0;
left:0;
width:100%;
margin:0 0 0;
}