Download & Extend

Admin menu displaying below content in IE 6

Project:Adminmenu Dhtml
Version:4.7.x-1.x-dev
Component:Miscellaneous
Category:bug report
Priority:normal
Assigned:Unassigned
Status:active

Issue Summary

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.

Comments

#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

Title:IE behaviour» Admin menu displaying below content in IE 6

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;
}
nobody click here