here you go:
basically, it is moving the closing div of #page from the end to before the div #footer. and putting a ‘clearfix’ div into place to stretch the #page background all the way to the bottom.
edit footer.php and find:
<hr />
<div id="footer" role="contentinfo">
<!-- If you'd like to suppo...
change it to:
<hr />
<div class="footer_clear"></div>
</div>
<div id="footer" role="contentinfo">
<!-- If you'd like to supp...
then further down, find:
</p>
</div>
</div>
<!-- Gorg../
change that to:
</p>
</div>
<!-- Gorg...
save the changes.
edit style.css:
find the style for #footer:
#footer {
background: #e7e7e7 url('images/kubrickfooter.jpg') no-repeat top;
border: none;
}
change the background position to ‘bottom’:
#footer {
background: #e7e7e7 url('images/kubrickfooter.jpg') no-repeat bottom;
border: none;
}
and add the new line for .footer_clear after it (actually it does not matter where you put it, this is just for tidyness):
.footer_clear { display:block; clear:both; }
last step –
increase the height of the footer background image ‘kubrickfooter.jpg’ –
a new version is here: https://img27.imageshack.us/img27/3521/kubrickfooter.jpg
(actually, you won’t need this image, just be aware that the footer background image might need to be much higher than the default one.)
this should be all.
god luck ??