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

Schoonzie’s picture

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)

Schoonzie’s picture

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;
}
simon georges’s picture

Status: Active » Closed (won't fix)

This version of Adminmenu Dhtml is not supported anymore. The issue is closed for this reason.

Please upgrade to a supported version and feel free to reopen the issue on the new version if applicable.