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;
}
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | bluemarine-style-pad_0.patch | 525 bytes | asimmonds |
| #2 | bluemarine-style-pad.patch | 525 bytes | asimmonds |
Comments
Comment #1
LukeLast commentedI forgot to mention the code is on line 240 of style.css
Comment #2
asimmonds commentedAs 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.
Comment #3
asimmonds commentedand the patch...
Comment #4
drummCommitted to HEAD.
Needs 4.7.
Comment #5
killes@www.drop.org commentedapplied
Comment #6
(not verified) commented