Jump to content

how to get menu at bottom of screen?


MDanz

Recommended Posts

Eek! A table! I urge you to switch to tableless layouts.

 

The only method I know for making a fixed footer utilizes div's and not tables:

 

footer {

  position:fixed;

  left:0px;

  bottom:0px;

  height:30px;

  width:100%;

  background:#999;

}

 

/* IE 6 */

* html #footer {

  position:absolute;

  top:expression((0-(footer.offsetHeight)+(document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight)+(ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop))+'px');

}

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.