In developing with themes with either Zen or Genesis (under Drupal 6), I found that their tabs css styles would break the button bar in IMCE. For anyone seeing this, it's an easy fix. Just add the following to your sub-theme css:
#imce-content ul.secondary{
background-color: transparent;
background-image: none;
}
#imce-content ul.secondary li{
float: none;
}
#imce-content ul.secondary a{
display: inline;
}
| Comment | File | Size | Author |
|---|---|---|---|
| #4 | imce-menu.png | 5.75 KB | crutch |
| after.jpg | 42.89 KB | fred0 | |
| before.jpg | 36.96 KB | fred0 |
Comments
Comment #1
bsimon commentedThanks, this works well in Zen. By the way, there's a patch for IMCE which apparently does the same thing.
http://drupal.org/node/301651
But I've been trying to figure out how to do it purely with the theme css like this - prefer that to changing the module files.
Comment #2
bsimon commentedmore detailed title to help people find it... I used IMCE for weeks before I realized the UI actually wasn't supposed to be broken... :/
Comment #3
chaloalvarezj commentedThank you!! This was driving me crazy!!!
Comment #4
crutch commentedI edited the item in modules/imce/css/imce-content.css
See attached image that makes the box or zone of the area minimum 40px. It fixed for IE7 and FF3 but only tested there.
Comment #5
babbage commentedNice. Thanks.
Comment #6
ufku commented#301651: Tabs need clear in CSS to preserve layout in some themes (including Zen)