In my /node listing the node titles are not visible. Developer Tools show me that there is a problem with ie8-fixes.css in the declaration of '.page-node .node .node-title.wrapper' (line #8) where position:absolute breaks the display.

The problem exists in IE8 and IE7 (compatibility mode of IE8).

You can fix it by setting position:relative in local.css

CommentFileSizeAuthor
#2 ie-header-fix-fix.diff1.01 KBAnonymous (not verified)
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Anonymous’s picture

Status: Active » Reviewed & tested by the community

Just to be clear: the particular problem in IE7 seems to be gone in IE8. Only if you turn on compatibility mode in IE8 you get the problem. Thus the fix is not needed in ie8-fixes.css. I can confirm that the above (un)fix is OK.

Anonymous’s picture

Status: Reviewed & tested by the community » Needs review
FileSize
1.01 KB

And for IE7 things are more complicated. On the node pages there is the requirement of absolute positioning (as opposed to the front page where the same is true as for IE8 in the above post).

sheena_d’s picture

Status: Needs review » Closed (fixed)

The fix for this issue has been added for the next release of the theme.

In the meantime, you can change line 8 of both ie8-fixes.css and ie7-fixes.css to read

.full-node .node .node-title-wrapper {

instead of

.page-node .node .node-title-wrapper {