I have a problem with drupal 6 (all releases) & ie7 (Drupal 5 no problem),
the main problem is the line that stick at the top of my site (ie7 only) see attachment, not in all content but in module admin/ cck, ipaper and few others that use sticky table header.
I used ie6 emulation in ie7 and the line disappeared, it seems to be problem with ie7 only.
to summarize:
ff3: sticky table header, no problem
ie6: no sticky header, no problem
ie7: sticky header, sticky line problem (see comment #2 attachment)
| Comment | File | Size | Author |
|---|---|---|---|
| extra linejpg.jpg | 8.83 KB | Emad |
Comments
Comment #1
Emad commentedanyone knows how to make ie7 at least act like ie6 in this, i don't need the sticky header with this problem.
Comment #2
dave reidI can confirm the behavior on IE7/Vista.
Comment #3
Emad commentedI disabled it in ie7:
in misc/tableheader.js
Drupal.behaviors.tableHeader = function (context) {
// This breaks in anything less than IE 7. (even 7) Prevent it from running.
//hopefully ie8 become respected browser
if (jQuery.browser.msie && parseInt(jQuery.browser.version, 10) < 8) {
return;
}
thats solve my issue :)
Comment #4
Emad commentedI just wonder why small fix like this not applied till now (Drupal 6.9)
Comment #5
dave reidComment #6
dave reidActually this is a duplicate of #213375: browser specific rendering bugs with "floating" table headers.