Issue: right sidebar blocks move to below content in IE.
Hi, I am new to Drupal and am converting a website ~40 pages to Drupal.
Unfortutanately, my client wants it to look EXACTLY like it currently does (very tabled website).
I've played around with panels and with columns (modified Marinelli) and just haven't found best approach.
I want my blocks to show in right-hand column on about 30% of the pages and it works fine in Firefox but in IE the blocks go down to the bottom of the page below the content, even when the content area is narrow.
Is there a quick fix in the IE css file that anyone can suggest for this?
url:http://www.wiidc.org/d
note: 'd' is the folder for the drupal files being developed outside of original website.
Any ideas? Thanks!
By tj_west on
Comments
Displaying blocks in IE solved
Problem solved! I just had to define the content width so it didn't automatically span the page pushing the blocks down below.
Fix in layout.css:
.wrapper .content{
width:550px;
}
Maybe the issue was specific to my customization of the Marinelli theme... I might have done something to mess it up, but if this is helpful to anyone with a similar issue ... cool!