Christopher kirby wrote:
> I am having a layout problem with IE6 which does not appear in IE7 or
>  Firefox.
> 
> http://www.ilsleypubliclibrary.org/databases/index_minimum.html

IE6 doesn't understand 'position: fixed' on nav, so the nav takes up
space - pushing the content over.

The addition of...

#nav {margin-right: -1000px;}

...will remove the space of the float (that IE6 sees that element as),
and thereby make the content center.

Other browsers will disregard the float-property since 'position: fixed'
takes precedence over 'float', so they won't have any problems with such
a fix.

----

The entire line-up is pretty weak in all browsers though, as content
will interfere with the nav and also disappear beyond the left edge on
narrow browser-windows. You should rethink the layout.

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