Re: [css-d] Last-minute question

2008-05-16 Thread Gunlaug Sørtun
Richard Grevers wrote:
 I just remembered that I had to reapply min/Max width expressions for
  the 3 container elements of a website and I discovered that IE6 is 
 doing strange things with the companion column as a result (On a 
 window wider than 1440px it extends the white background of the 
 content colum to the left by the same amount as the space to the
 right of the globalwrapper.

 http://www.vine.org.nz/index.php/test-page

You have problems with a series of IE6 bugs in that test page, so I
guess the live pages show similar problems.

1: the 'italic bug'[1] acts on main content and overall width, but of
course not on the #pedestal. You have to fix or avoid that italic bug,
or else there will intermittently pop up a horizontal scroll-bar when
italic text hits IE6.

2: the first declared font-size is in 'em', so you're triggering the 'em
font-resizing bug in IE5 - 7'[2]. That means the min-width in em part
of your expression is off by a mile if font-resizing is anything but
normal / medium.

Adding...
#globalwrapper { font-size: 100%;}
...will repair that.

3: the max-attack-value in the expression must be larger than
max-result-value, so the width of the space to the right of
#globalwrapper is accounted for.

4: #globalwrapper has to be extended to include all other containers, or
else IE6 will tend to render them out of sync because of its many bugs
- most seriously the 'italic bug' and the 'auto-expansion bug'.
This means moving the end-tag for #globalwrapper down to /body in the
markup, which I hope is possible for the live pages also.

Working example: http://www.gunlaug.no/tos/alien/rg/test_08_0516.html


regards
Georg

[1]http://www.positioniseverything.net/explorer/italicbug-ie.html
[2]http://www.gunlaug.no/contents/wd_additions_13.html
-- 
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] Last-minute question

2008-05-16 Thread Gunlaug Sørtun
Gunlaug Sørtun wrote:

 Working example:
 http://www.gunlaug.no/tos/alien/rg/test_08_0516.html

Discard the entire thing. Impossible to make all those wrappers work
properly together on top of your stylesheets. I give up on it.

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/


[css-d] Last-minute question

2008-05-15 Thread Richard Grevers
I just remembered that I had to reapply min/Max width expressions for
the 3 container elements of a website and I discovered that IE6 is
doing strange things with the companion column as a result (On a
window wider than 1440px it extends the white background of the
content colum to the left by the same amount as the space to the right
of the globalwrapper. Since the site has just gone live, I duplicated
the template and created a test page:

http://www.vine.org.nz/index.php/test-page


(My guess is that there is something in the companion column method
that is assuming 100% width that I haven't spotted)
-- 
Richard Grevers, New Plymouth, New Zealand
Dramatic Design www.dramatic.co.nz
__
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/