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)

CommentFileSizeAuthor
extra linejpg.jpg8.83 KBEmad

Comments

Emad’s picture

anyone knows how to make ie7 at least act like ie6 in this, i don't need the sticky header with this problem.

dave reid’s picture

I can confirm the behavior on IE7/Vista.

Emad’s picture

I 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 :)

Emad’s picture

I just wonder why small fix like this not applied till now (Drupal 6.9)

dave reid’s picture

Title: Sticky Horizontal Line in ie7 » IE7 sticky table header does not work
Version: 6.6 » 6.x-dev
Issue tags: +IE, +JavaScript, +ie7
dave reid’s picture

Status: Active » Closed (duplicate)