Debbie Campbell wrote:
> In IE 6 and 7 the two unordered lists at the bottom left and bottom 
> right are dropped down a few lines on this page:
> 
>> http://www.parallaxwebdesign.com/projects/saint-joe/
> 
> Can someone tell me why and how to fix it?

Looks like a strange variant of 'contained white-space' - possibly
related to an IE-variant of 'collapsing margins', but I have no idea why
IE comes up with that kind of bugs.

Fixing it is easier. Replace paddings with margins on the wrapping div...

.graphic_textbox_layout_style_default {
/*padding: 4px;*/
margin: 4px;
}
...or add a 'hasLayout' trigger to it...

.graphic_textbox_layout_style_default {
padding: 4px;
height: 1%;
}

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to