When viewing in IE, the collapsible fieldset titles overlap onto the input fields which obfuscates them. Attached is a screenshot. Will try and post a patch today if I get a chance but I thought I would report.

CommentFileSizeAuthor
sshot.jpg35.61 KBDublin Drupaller

Comments

Dublin Drupaller’s picture

Quick fix:

Add this to your page.tpl.php (inside the HEAD tags)
<!--[if IE]><style type="text/css" media="screen"> fieldset legend a, fieldset legend span { top: 0; left: 0; } </style><![endif]-->

it's a conditional style for IE only.

will try and find time later to create a proper patch.

mcrittenden’s picture

Title: display problem in IE with collapsible fieldsets » Display problem in IE with collapsible fieldsets
Status: Active » Needs review

Thanks, yeah that's pretty gross looking. Are you seeing it in all IE versions? Your quick fix seems to say that you are, but just wanted to check.

Dublin Drupaller’s picture

you're welcome. I just noticed it in IE8. I haven't tested it with other versions.

mcrittenden’s picture

Assigned: Unassigned » mcrittenden
Status: Needs review » Needs work

Ok, thanks again. Will work on this ASAP.

mrfelton’s picture

FYI I fixed this problem in http://drupal.org/node/654704#comment-2361520 which incorporates all the latest changes from the D7 branch of the theme, and some pending patches.

mcrittenden’s picture