I did this, which fixed it in Chrome.
* Add 100% height to html and body. I think you also want to zero their padding and margins. For example:
Code:
html, body {
margin: 0;
padding: 0;
height: 100%;
}
* Change the min-height of #page from 850px to 100% (on line 74 in style.css), as in:
Code:
#page {
max-width: 950px;
margin-right: auto;
margin-left: auto;
min-height: 100%;
}
* Add a clearing div at the end of #page, so that it looks like this:
HTML Code:
<div id="page" class="hfeed">
<header id="branding" role="banner">
...
</header>
<!-- #branding -->
<div id="main">
...
</div>
<!-- #main -->
<!-- ADD THIS LINE -->
<div style="clear:both;"></div>
</div>
__________________
Your answers will only be as good as your question. Formulate it well and give all the necessary information.
|