Marc Funaro wrote:
> http://nyslittree-org.advantex.net/index.cfm/fuseaction/DB.ListNYSAuthors.cfm

>  The list of authors in the main content area is long - Opera/Win and
>  IE/Win have no problem with this, but in Firefox/Win the left menu 
> is pushed down below the content area.  It's not the WIDTH of the 
> content area, but the height... And it appears to only be a problem 
> on FireFox/Win.

Gecko obviously has a problem, and it seems to be related to 'display:
table;' on #twoColumnBody.
I have observed several weaknesses in Gecko when using that property,
but I haven't narrowed it down further than to an instability in Moz/Fx.

> What can I adjust to make FireFox behave?

Two "fixes" seem to work in Firefox 2.0 and Mozilla 1.7.12.

1: Adding specificity to the floating side-nav...
#leftNav {
float: left!important;
}

2: Changing float-containment solution on the container...
#twoColumnBody {
/* display:table; <-- delete this */
overflow: hidden; /* <-- use this instead */
}

You can of course combine these "fixes". Doing so should not create any
problems for other, relatively new, browsers.

If you use the second "fix", then you should also add...
* html #twoColumnBody {
overflow: visible;
}
...if you care about rendering in IE5/5.5.

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