Re: [css-d] footer doesn't occupy width in IE6

2008-10-01 Thread Luc
Good morning David, 

It was foretold that on 01/10/2008 @ 01:07:52 GMT-0400 (which was
02:07:52 where I live) David Laakso would write:

snipped a bit

 Only IE/7 has the 
 mickey mouse zoom thingy. It zooms *the page* up or down. So I guess
 there's not much you can do about the page being 50 percent shorter than
 you intend. OTOH, there may be something you could do to prevent what 
 happens to your page at text-size smallest in IE browsers; and, at minus
 font-scaling settings in Camino, WebKit, Safari, and Firefox.

Well,  with the Debugbar i can zoom in IE6 but i guess it's not much
of an issue because not so many users will surf at small text, right?

I was more worried about how it looks at large resolutions: if the
footer keeps sticking at the bottom 

PS: sorry about not changing the topic of the e-mail was already
late when i hit the send button

-- 
Best regards,
 Luc
_


Using the best e-mail client: The Bat! version 4.0.18 with Windows XP
(build 2600), version 5.1 Service Pack 2 and using the best browser:
Opera.

The fact that an opinion has been widely held is no evidence that it
is not utterly absurd. - Bertrand Russell (1872-1970) - British
philosopher 


__
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] footer doesn't occupy width in IE6

2008-10-01 Thread David Laakso
Luc wrote:

 Well,  with the Debugbar i can zoom in IE6 but i guess it's not much
 of an issue because not so many users will surf at small text, right?

 I was more worried about how it looks at large resolutions: if the
 footer keeps sticking at the bottom 


   




RE: http://www.dzinelabs.com/sandbox/dwexample1.html

Average users are not running around with IE debuggers in order to zoom 
fonts in IE/6, so it's a mute point in my opinion. The IE/7 page-zoom 
thing -- unlike Opera's font-zoom, and FF/3's introduction of 
font-scaling to include everything within the page -- scales only the 
width of your page; consequently, the footer will not touch the bottom 
of the viewport on plus zoom. Afaik, there is no fix for this.

Not everyone in the world has their browser fonts set at default. So it 
is risky to assume not so many users will surf at small text. The 
breaking out of the content from its container at smaller than default 
font size in compliant browsers, and even IE/6 and IE/7 is correctable 
(and of greater priority in my opinion than your IE/7 plus zoom problem).







http://chelseacreekstudio.com/

__
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] footer doesn't occupy width in IE6

2008-10-01 Thread Luc
Good afternoon David, 

It was foretold that on 01/10/2008 @ 10:55:00 GMT-0400 (which was
11:55:00 where I live) David Laakso would write:

snipped a bit

 Average users are not running around with IE debuggers in order to zoom
 fonts in IE/6, so it's a mute point in my opinion. The IE/7 page-zoom 
 thing -- unlike Opera's font-zoom, and FF/3's introduction of 
 font-scaling to include everything within the page -- scales only the 
 width of your page; consequently, the footer will not touch the bottom
 of the viewport on plus zoom. Afaik, there is no fix for this.

True, but i was talking about page-zoom, not about the font zoom,
sorry if i didn't make myself clear...

 Not everyone in the world has their browser fonts set at default. So it
 is risky to assume not so many users will surf at small text. The
 breaking out of the content from its container at smaller than default
 font size in compliant browsers, and even IE/6 and IE/7 is correctable
 (and of greater priority in my opinion than your IE/7 plus zoom problem).

As far i can tell, at the moment, it's the gallery and logo that
breaks apart at smaller than default... which i haven't corrected yet
.. hopefully i'll be able to do that later today (fingers crossed).

With not so many users will surf at small text i meant at tiny
page zoom.

So, to sum it up:

get the gallery and logo in shape.

 
-- 
Best regards,
 Luc
_

Using the best e-mail client: The Bat! version 4.0.18 with Windows XP
(build 2600), version 5.1 Service Pack 2 and using the best browser:
Opera.

Suddenly his chin slips from the palm of the hand supported by an
elbow resting on the desk. His head hits the desktop violently. And so
another civil servant dies...  


__
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] footer doesn't occupy width in IE6

2008-09-30 Thread Gunlaug Sørtun
Luc wrote:

 I have a footer that sticks to the bottom of the page but in IE6 i 
 encounter a problem: the footer doesn't occupy the width of the 
 container, i.o.w. it stops about 8px before reaching the left side of
  the container.

Short on the right side at my end.

 http://www.dzinelabs.com/sandbox/dwexample1.html

Page suffers from the auto-expansion bug in IE6 - something is too
wide in there, making the page too wide.
The footer OTOH stretches only '100%' of the intended
'width:48.75em;', so it appears to be too narrow.

You either add...

* html .twoColElsLtHdr #container{
overflow-x: hidden;
}

...to kill the auto-expansion bug, or you find what's causing the
expansion and removes that.

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] footer doesn't occupy width in IE6

2008-09-30 Thread Luc
Good evening Gunlaug, 

It was foretold that on 30/09/2008 @ 00:28:57 GMT+0200 (which was
19:28:57 where I live) Gunlaug Sørtun would write:

 Short on the right side at my end.

oops ... my bad

 Page suffers from the auto-expansion bug in IE6 - something is too
 wide in there, making the page too wide.
 The footer OTOH stretches only '100%' of the intended
 'width:48.75em;', so it appears to be too narrow.

 You either add...

 * html .twoColElsLtHdr #container{
 overflow-x: hidden;


 ...to kill the auto-expansion bug, or you find what's causing the
 expansion and removes that.

I'll go for the easy solution lol... the overflow-x method did it of
course...

Tnx Gunlaug!!!

 
-- 
Best regards,
 Luc
_


Using the best e-mail client: The Bat! version 4.0.18 with Windows XP
(build 2600), version 5.1 Service Pack 2 and using the best browser:
Opera.

Love is the answer - but while you're waiting for the answer sex
raises some pretty good questions. - Woody Allen 


__
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] footer doesn't occupy width in IE6

2008-09-30 Thread David Laakso
Luc wrote:
  Good evening list,  

  I just did a quick check with Debugbar in IE to see if my footer
  sticks at the bottom of the viewport. Zooming at around 50% and
  less, it doesn't stick anymore. In Opera the footer behaves.

  Some kind of IE bug probably but i can't figure out what causes it
  and how to solve it.

  http://www.dzinelabs.com/sandbox/dwexample1.html

  css embedded
  
   



There are a lot of versions of Internet Explorer. Only IE/7 has the 
mickey mouse zoom thingy. It zooms *the page* up or down. So I guess 
there's not much you can do about the page being 50 percent shorter than 
you intend. OTOH, there may be something you could do to prevent what 
happens to your page at text-size smallest in IE browsers; and, at minus 
font-scaling settings in Camino, WebKit, Safari, and Firefox.

-- 

A thin red line and a salmon-color ampersand forthcoming.

http://chelseacreekstudio.com/

__
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/