View Single Post
Old 29-10-2009, 01:58   #2
Strzelecki
Inactive
 
Join Date: Jan 2004
Location: Essex
Age: 43
Services: 80/20Mbps FTTC on Freeola
Posts: 871
Strzelecki has reached the bronze age
Strzelecki has reached the bronze ageStrzelecki has reached the bronze ageStrzelecki has reached the bronze ageStrzelecki has reached the bronze ageStrzelecki has reached the bronze ageStrzelecki has reached the bronze ageStrzelecki has reached the bronze ageStrzelecki has reached the bronze ageStrzelecki has reached the bronze ageStrzelecki has reached the bronze ageStrzelecki has reached the bronze age
Re: HTML / CSS Assistance

You need to do something like:
Code:
html, body {
  height:100%;
}
/*  Add this to #wrapper */
#wrapper {
  height:100%;
  min-height:100%;
}
/* fix for IE */
html>body #wrapper {
  height:auto;
  min-height:auto
}
*/ then modify the footer*/
#footer {
  position:absolute;
  width:100%;
  bottom:0;
}
This will get the footer to 'stick' to the bottom of the viewpoint or browser window depending on the page content.
You can't 'find' what you're looking for as the whitespace isn't caused by an element, it just where the bottom of the document (body) ends. It the common 100% height problem.
Strzelecki is offline   Reply With Quote