Closed (fixed)
Project:
Control Panel
Version:
4.7.x-1.x-dev
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
4 Sep 2006 at 23:21 UTC
Updated:
18 Jan 2008 at 05:04 UTC
IE6 for windows does not display the admin menu items correctly - they're scattered everywhere. This is because of a well-known IE problem with floats. The issue can be fixed by changing the code in controlpanel.css from:
div.control-panel-item {
float: left;
margin: 1em;
text-align: center;
width: 50pt;
padding: .1em;
}to:
div.control-panel-item {
float: left;
margin: 1em;
text-align: center;
width: 50pt;
padding: .1em;
display: inline;
}
Comments
Comment #1
jraper@groups.drupal.org commentedI tried this fix and it had no effect for me.
Comment #2
dreed47 commented