[WSG] Footer on the very bottom of the viewing port

2004-04-07 Thread Mike Kear
I want to have a footer stuck to the bottom of the browser window, but if the window reduces in size, the footer goes over the top of other page content. What I'd like to do is have the footer stick to the bottom of the browser, except if it collides with other page content, which will push it down

Re: [WSG] Footer on the very bottom of the viewing port

2004-04-07 Thread Michael Allan
Ah, that old chestnut ;-) There was a good article in ALA about this recently: http://www.alistapart.com/articles/footers/ HTH. Cheers, Mike On Thursday, April 8, 2004, at 05:01 PM, Mike Kear wrote: I want to have a footer stuck to the bottom of the browser window, but if the window reduces

Re: [WSG] Footer on the very bottom of the viewing port

2004-04-07 Thread Benjamin
http://www.alistapart.com/articles/footers/ that should have what you need > I want to have a footer stuck to the bottom of the browser window, but if > the window reduces in size, the footer goes over the top of other page > content. What I'd like to do is have the footer stick to the bottom > o

Re: [WSG] Footer on the very bottom of the viewing port

2004-04-08 Thread Chris Blown
Hey Mike, Check here http://scott.sauyet.name/CSS/Demo/FooterDemo2.html Regards Chris Blown http://hinterlands.com.au On Thu, 2004-04-08 at 17:01, Mike Kear wrote: > I want to have a footer stuck to the bottom of the browser window, but > if the window reduces in size, the footer goes over the t

Re: [WSG] Footer on the very bottom of the viewing port

2004-04-09 Thread Chuck
Chris, Add "bottom: 0;" to your page container and it will work in Safari. #contents { position: absolute; top: 0; left: 0; bottom: 0; } On Thursday, April 8, 2004, at 02:21 AM, Chris Blown wrote: Hey Mike, Check here h