[WSG] IE footer problem at low resolution

2007-02-22 Thread Lyn Patterson
Good morning http://www.westernwebdesign.com.au/test/newindex.html I am having more trouble with this relatively simple design than with far more complicated sites. . The problem only seems to occur in IE at res 800 x 600. At res 1024 x 768 it is fine and in Fx at 800 x 600 it is fine but

Re: [WSG] IE footer problem at low resolution

2007-02-22 Thread John Faulds
It's margin-bottom: -40px on #container which is causing the problem. If it's there to make the footer stick to the bottom, you might want to look at a different implementation. On Fri, 23 Feb 2007 10:36:47 +1000, Lyn Patterson [EMAIL PROTECTED] wrote: Good morning

Re: [WSG] IE footer problem at low resolution

2007-02-22 Thread Lyn Patterson
It's margin-bottom: -40px on #container which is causing the problem. If it's there to make the footer stick to the bottom, you might want to look at a different implementation. Thanks John but having removed it, the problem remains. http://www.westernwebdesign.com.au/test/newindex.html

Re: [WSG] IE footer problem at low resolution

2007-02-22 Thread John Faulds
Looks OK at my end. The two other things I'd remove would be: * html, body { height: 100%;} * html #container {height: 1%;} The first one is wrong because there's a comma in there and you're applying a rule that you already have on the body and the second one isn't needed because you've

Re: [WSG] IE footer problem at low resolution

2007-02-22 Thread Rolf SF
Lynn, Check out footerStickAlt from the man in blue - http:// www.themaninblue.com/writing/perspective/2005/08/29/ Your css looks similar - you might read through his write-up and see if there are some clues. I notice that he uses position: relative for the footer, which you don't, and that

Re: [WSG] IE footer problem at low resolution

2007-02-22 Thread Lyn Patterson
* html, body { height: 100%;} * html #container {height: 1%;} The first one is wrong because there's a comma in there and you're applying a rule that you already have on the body and the second one isn't needed because you've already applied a height to #container. Thanks for that John - I

Re: [WSG] IE footer problem at low resolution

2007-02-22 Thread Lyn Patterson
Check out footerStickAlt from the man in blue - http://www.themaninblue.com/writing/perspective/2005/08/29/ Your css looks similar - you might read through his write-up and see if there are some clues. I notice that he uses position: relative for the footer, which you don't, and that might keep