blocks wrap in internet explorer
kobnim - September 18, 2009 - 00:33
| Project: | 960 Robots |
| Version: | 6.x-2.1 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
I'm noticing a problem in IE6.
Here is what I did:
I install a fresh version of drupal 6.14.
Then I install a fresh version of 960robots.
Then I enable the Who's Online block, in the right(most) sidebar.
And then I go to user/1 to view my profile.
Here is what I see in firefox:
The Who's Online block is to the right of the profile (as I expected).
Here is what I see in ie6:
The Who's Online block is below the profile.
It looks like ie6 decided there wasn't enough room for the sidebar to fit next to the profile, so instead it placed the sidebar content below the profile.
Is this a known problem with the theme? Is there a workaround?
Thanks for a great theme!
Mindy

#1
A follow-up ...
In 960.css, I reduced the left and right grid margins from 10 to 8, and that fixed the problem:
.grid_1,.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12,
.grid_13,
.grid_14,
.grid_15,
.grid_16
{
display: inline;
float: left;
/*margin-left: 10px;
margin-right: 10px;*/
margin-left: 8px;
margin-right: 8px;
}