[css-d] IE pushes up my sidebars

2009-01-13 Thread John Shepard
IE pushes up both right and left sidebars on my homepage.
To view, go to: http://earthpedal.com
Anyone have a fix?

Thanks ahead!

John

__
css-discuss [cs...@lists.css-discuss.org]
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] IE pushes up my sidebars

2009-01-13 Thread Bill Brown
John Shepard wrote:
 IE pushes up both right and left sidebars on my homepage.
 To view, go to: http://earthpedal.com
 Anyone have a fix?
 
 Thanks ahead!
 
 John

Hi John,

Try this:
#content{zoom:1}

Also maybe wanna have a look at validating the source code, which has a 
few errors.

Hope it helps.
Bill
__
css-discuss [cs...@lists.css-discuss.org]
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] IE pushes up my sidebars

2009-01-13 Thread Jack Timmons
On Tue, Jan 13, 2009 at 7:11 PM, Bill Brown macnim...@gmail.com wrote:

 John Shepard wrote:
  IE pushes up both right and left sidebars on my homepage.
  To view, go to: http://earthpedal.com
  Anyone have a fix?
 
  Thanks ahead!
 
  John

 Hi John,

 Try this:
 #content{zoom:1}

 Also maybe wanna have a look at validating the source code, which has a
 few errors.

 Hope it helps.
 Bill


It's not really fair to claim they need to validate if the answer you supply
them is invalid itself.

Other methods of gaining layout are available, height: 0 in a conditional
comment being one I sometimes you. You can always view the chart on
havingLayout [1] as an example of other methods.

-Jack

[1] - http://onhavinglayout.fwpf-webdesign.de/hack_management/

-- 
-Jack Timmons
http://www.trotlc.com
Twitter: @jorachim
__
css-discuss [cs...@lists.css-discuss.org]
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] IE pushes up my sidebars

2009-01-13 Thread Bill Brown
 It's not really fair to claim they need to validate if the answer you supply
 them is invalid itself.
 
 Other methods of gaining layout are available, height: 0 in a conditional
 comment being one I sometimes you. You can always view the chart on
 havingLayout [1] as an example of other methods.
 
 -Jack
 
 [1] - http://onhavinglayout.fwpf-webdesign.de/hack_management/

The validation of code is an assessment of the code quality. Choosing to 
employ a bit of invalid code because its benefits outweigh its 
detriments is not the same as simply having a page with errors.
__
css-discuss [cs...@lists.css-discuss.org]
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] IE pushes up my sidebars

2009-01-13 Thread John Shepard
Thanks for the heads up on validation. Looking better now but still having
the problem in IE.

John


On 1/13/09 5:11 PM, Bill Brown macnim...@gmail.com wrote:

 John Shepard wrote:
 IE pushes up both right and left sidebars on my homepage.
 To view, go to: http://earthpedal.com
 Anyone have a fix?
 
 Thanks ahead!
 
 John
 
 Hi John,
 
 Try this:
 #content{zoom:1}
 
 Also maybe wanna have a look at validating the source code, which has a
 few errors.
 
 Hope it helps.
 Bill


__
css-discuss [cs...@lists.css-discuss.org]
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] IE pushes up my sidebars

2009-01-13 Thread Gunlaug Sørtun
John Shepard wrote:
 Thanks for the heads up on validation. Looking better now but still
 having the problem in IE.

 http://earthpedal.com

IE6 doesn't push up the side columns, it expands the #masthead. It's
IE's old auto-expansion bug, and that can be cured by adding...

* html #masthead {overflow-y: hidden;}


Your layout doesn't tolerate font resizing well, which it has to since
the text is unreadable small at default.

Also: you've triggered IE's em font-resizing bug...
http://www.gunlaug.no/contents/wd_additions_13.html
...which leads to even less tolerance for font resizing.

regards
Georg
-- 
http://www.gunlaug.no
__
css-discuss [cs...@lists.css-discuss.org]
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/