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
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

Schoonzie - February 14, 2007 - 22:52

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

Schoonzie - February 15, 2007 - 02:56
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;
}

 
 

Drupal is a registered trademark of Dries Buytaert.