TCrabtree wrote:

> I'm having trouble finding the reason that IE6 displays this page 
> differently than Firefox 1.5. Firefox displays it as I intended, with
>  both divs side by side; however in IE6, the div #right-side-content 
> appears BELOW the #left-side-content div. 
> http://www.tusculum.edu/azindex.html

Those nested unordered lists are full width and with a margin. IE6
expands columns to make space for the extra width, while better browsers
respect given column-width.

Simplest solution is of course to make IE6 imitate the better browsers,
by adding...
#left-side-content, #right-side-content {overflow-x: hidden;}
...which will prevent horizontal expansion in IE6, but you should do
something about the width of those lists too.

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