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...
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | panels_960gs-clear-1358502.patch | 521 bytes | jwilson3 |
Comments
Comment #1
jwilson3Patch adds .clear directive to lib/clearfix.css (and cleans out a couple trailing white spaces to boot).
Comment #2
jwilson3