[css-d] footer not always sticking to bottom of window

2009-01-05 Thread Debbie Campbell
I've tried footerstickalt and a few other sticky footer methods but am 
still having problems - this is FF only (not yet checked in other 
browsers until I get this working correctly).

 http://www.redkitecreative.com/projects/endorphin/index_footer.php

The footer stays at the bottom of the window until you decrease the size 
of the window, then a gap appears below the footer.

I just need to have the footer stay at the bottom without riding up over 
the content in #main and #sidebar. Thanks for your help.

-- 
Debbie
__
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] footer not always sticking to bottom of window

2009-01-05 Thread Scott Thigpen


 The footer stays at the bottom of the window until you decrease the size
 of the window, then a gap appears below the footer.


I was unable to recreate your problem, it worked fine in FF3 for me.
__
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] footer not always sticking to bottom of window

2009-01-05 Thread David Laakso
Debbie Campbell wrote:
 http://www.redkitecreative.com/projects/endorphin/index_footer.php
 

 The footer stays at the bottom of the window until you decrease the size 
 of the window, then a gap appears below the footer.

 I just need to have the footer stay at the bottom without riding up over 
 the content in #main and #sidebar. Thanks for your help.

   



I do not think you will be able to avoid the footer riding up in a 
narrower and/or shorter window in any browser short of reducing the 
depth of the content in the main or sidebar.  With luck someone will 
prove me wrong :-) .

-- 

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

http://chelseacreekstudio.com/

__
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] footer not always sticking to bottom of window

2009-01-05 Thread Ingo Chao
2009/1/5 Debbie Campbell d...@redkitecreative.com

 I've tried footerstickalt and a few other sticky footer methods...

  http://www.redkitecreative.com/projects/endorphin/index_footer.php

 The footer stays at the bottom of the window until you decrease the size
 of the window, then a gap appears below the footer.

 I just need to have the footer stay at the bottom without riding up over
 the content in #main and #sidebar. Thanks for your help.


This is not Footer Stick Alt. In the article by Cameron Adams, see the
padding-bottom in the content area to make room for the footer that is
offset upwards.

You are offsetting #content downwards by positioning it relatively. Note CSS
2.1: 9.9.1: Offsetting a box (B1) in this way has no effect on the box (B2)
that follows: B2 is given a position as if B1 were not offset and B2 is not
re-positioned after B1's offset is applied. This implies that relative
positioning may cause boxes to overlap.

Apply a red test background to #content. See the #content is sliding under
your footer. Again, this is not footer stick alt. Don't offset #content,
offset footer instead by its own height.

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