Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How did they develop this website footer?

Tags:

javascript

css

I understand how to show/hide DIV but how did they make this footer?

I would love this on my website.

Please take a look at this page it's Constant Contact by the way, notice the footer.

Constant Contact Thanks!

like image 489
Overmars Avatar asked Dec 10 '25 10:12

Overmars


1 Answers

Here is a very simplistic version of how to achieve something similar to your example. You only need to use JavaScript if you're using a browser < IE7, otherwise simple CSS can do it.

Live Demo

#footer{
  bottom: 0px;
  position: fixed;
}
like image 67
Loktar Avatar answered Dec 11 '25 23:12

Loktar