JDR @ Home wrote:

> In FF the page lays out like I envision it to but in IE the second 
> paragraph in the content box shifts down to display after the end of 
> the left navigation box.
> 
> http://www.romdev.net/castellinigroup

I suggest you float the content box, to avoid a number of possible bugs.
The addition of...

#content {
float: right;
width: 500px;
margin: 0 8px 0 0;
display: inline /* IE6 'float-margin' fix */;
overflow-x: hidden /* IE6 'auto-expansion' fix */;
}

...should do.

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