In admin e.g. in IE7/8 this is what happens with textfields part below the tabs.

CommentFileSizeAuthor
screen1.PNG46.06 KBZarevac
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

geerlingguy’s picture

I'll check into this asap - I'm guessing a clearfix needs to be added somewhere (probably changed in Zen 2.x-dev recently).

geerlingguy’s picture

Assigned: Unassigned » geerlingguy
Status: Active » Fixed

I am committing a patch which should help with this. I basically added the following rules in pages.css:

div.tabs /* See also the tabs.css file. */
{
	width: 100%;
}

I also added a clear rule to the #content-area id:

#content-area /* Wrapper for the actual page content */
{
  margin-bottom: 1em;
	clear: both;
}

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.