There is an IE bug in the Bluemarine CSS on the Taxonomy terms. With a "padding" of 1.5em, the padding on the top interferes with the title link. This causes only half the link to be clickable. A simple fix is to just make the padding affect the left side "padding-left".

Bug

.node .taxonomy {
  color: #999;
  font-size: 0.8em;
  padding: 1.5em;
}



Fix

.node .taxonomy {
  color: #999;
  font-size: 0.8em;
  padding-left: 1.5em;
}

Comments

LukeLast’s picture

I forgot to mention the code is on line 240 of style.css

asimmonds’s picture

Title: CSS IE bug » Bluemarine CSS padding for .node .taxonomy can cause problems in IE
Project: Bluemarine » Drupal core
Version: 4.6.x-1.x-dev » x.y.z
Component: Code » theme system
Status: Active » Needs review
StatusFileSize
new525 bytes

As a outcome of this forum post: http://drupal.org/node/85452: "Help with removing extra space around the "Submitted by" text on IE. Overlaying header text making it non-clickable!", nevets opened http://drupal.org/node/85468 issue, but it was really a duplicate of this one.

I have checked 4.7 and HEAD with IE6, and I think this is still a valid bug in both.

Patch attached for this padding change.

asimmonds’s picture

StatusFileSize
new525 bytes

and the patch...

drumm’s picture

Version: x.y.z » 4.7.x-dev
Status: Needs review » Patch (to be ported)

Committed to HEAD.

Needs 4.7.

killes@www.drop.org’s picture

Status: Patch (to be ported) » Fixed

applied

Anonymous’s picture

Status: Fixed » Closed (fixed)