Hi, not sure if this is a drupal issue, a webforms issue, or an IE6 css issue. If someone could help me please let me know!

I created a webform with a few fieldsets. They display o.k. in Firefox and Chrome, but when viewed with IE6 the top border is missing. My webforms have no background and I just left them styled as default.

I took a look at the fieldsets in my admin theme (I use bluemarine) with IE6, and these fieldsets do not have the border issue. I looked all over with firebug to see what the difference was with the .css for the fieldsets in both cases but I couldn't really see what was the difference (I even tried to add
fieldset
{
border 1px solid #cccccc;
}

on my style.css of my template (trying to copy what bluemarine was doing) but it made no difference: the top border still wasn't there. Anyone know what's going on/how I can fix it?

Comments

sittard’s picture

/* Prevent missing top fieldset border in Internet Explorer. */
html.js fieldset.collapsible legend {
  display:inline;
}
Lang Wu Jane’s picture

It works for me, thanks~~