Re: [css-d] XHTML 1.0 Transitional and IE6

2008-01-24 Thread Gunlaug Sørtun
Michael Adams wrote:

 Using a two column negative margin layout, only IE5, IE5.5 and IE6
 all show the sidebar below the main content, though everything looks
 offset correctly in the x direction. First time i've tried working in
 quirks mode and wonder if anyone can see my overlooked issue.
 
 http://demo.realpeople.gen.nz

IE6 (regardless of mode) and below do not respect declared dimensions.
The result is a too wide sidebar - making it drop.

Adding...

* html #sidebar {overflow-x: hidden; margin-right: -10px;}

...will keep sidebar-width under control, and provide some extra space
for IE/win's calculation bugs.

regards
Georg
-- 
http://www.gunlaug.no
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] XHTML 1.0 Transitional and IE6

2008-01-24 Thread Michael Adams
On Thu, 24 Jan 2008 15:19:37 +0100
Gunlaug Sørtun wrote:

 Michael Adams wrote:
 
  Using a two column negative margin layout, only IE5, IE5.5 and IE6
  all show the sidebar below the main content, though everything looks
  offset correctly in the x direction. First time i've tried working
  in quirks mode and wonder if anyone can see my overlooked issue.
  
  http://demo.realpeople.gen.nz
 
 IE6 (regardless of mode) and below do not respect declared dimensions.
 The result is a too wide sidebar - making it drop.
 
 Adding...
 
 * html #sidebar {overflow-x: hidden; margin-right: -10px;}
 
 ...will keep sidebar-width under control, and provide some extra space
 for IE/win's calculation bugs.
 

Much appreciated, and credited you in the comments :)

-- 
Michael

All shall be well, and all shall be well, and all manner of things shall
be well

 - Julian of Norwich 1342 - 1416
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/