Hi!

When using IE8, the 'Themer Info' block ends up being in the upper left corner of the web page. If you are using Minelli (or Garland) and have a menu in the Site Header element (i'm using a Swedish version, it's called Sidhuvud so i just tried to translate, i mean the theme element that is highest up), which is using the Nice Menus module functionality to create drop down menus, the Themer Info block end up being directly on top of those menus and messes them up, making them unusable. I attach a screen shot of how it looks in both IE and Firefox.

CommentFileSizeAuthor
firefox.jpg76.9 KBCousken
ie8.jpg64.43 KBCousken

Comments

charles belov’s picture

It also conflicts with Administration Menus in Garland.

Replacing devel_themer_ie_fix.css CSS:

#themer-fixeder {
position: absolute !important;
}

#themer-toggle {
position: absolute !important;
top: 0 !important;
bottom: auto !important;
}

with the following in my IE user stylesheet (Tools > Internet Options > General tab > Accessibliity)

#themer-fixeder {
position: absolute !important;
}

#themer-toggle {
position: absolute !important;
top: 30 !important;
left: auto !important;
right: 0 !important;
bottom: auto !important;
}

gets it out of my way. Odd that if I simply update devel_themer_ie_fix.css it doesn't work (and yes, I verified that that's what is being served).