The 960gs makes heavy use of a technique to clear floating divs using an empty <div class="clear"></div>. This theme is missing the .clear directive found in 960gs' CSS (snippet below), which causes display issues in older browsers with certain types of layouts.

/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

Patch to follow...

CommentFileSizeAuthor
#1 panels_960gs-clear-1358502.patch521 bytesjwilson3
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

jwilson3’s picture

Patch adds .clear directive to lib/clearfix.css (and cleans out a couple trailing white spaces to boot).

jwilson3’s picture

Status: Active » Needs review