views:

21

answers:

2

Please have a look at the following page:

http://www.eddale.co/general/on-reception-the-iphone-4-hysteria-the-real-lifelab-test-conundrum

I want to create a similar form like the one always sticking to the bottom of the page in the link above ...

how do i do this?

+3  A: 

If you don't care about support for IE6 you can position it fixed at the bottom with css e.g

#element_to_position {position: fixed; left:0;bottom:0;width:100%;height:20px;}

If you care you must tweak it with a fake body tag. E.g. see this http://ryanfait.com/position-fixed-ie6/

Bruno