Travis Barden wrote: > I am having trouble getting my left nav div to vertically align in > IE6. It works fine in Firefox 1.5. It is supposed to be flush against > the header, but in IE it floats near the center of the page.
> http://omega-tek.com/willow/pie.html Links in lists becomes too wide in IE6 when paddings are added to 100% width. That's correct rendering, but doesn't work well here since it runs into the 'expanding container bug' in IE. So the entire left column runs out of space and drops. Solution: replace 'width: 100%;' with 'zoom: 1;' for '#button li a' in 'pie.css', in order to get 'Layout'[1] in IE/win without the overshot. Alternatively - add: #left {overflow: hidden;} ...to hide the overshot. regards Georg [1]http://www.satzansatz.de/cssd/onhavinglayout.html -- http://www.gunlaug.no ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- 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/
