Hi Samantha,
I believe your issue is that you are using position: relative in combination with a negative top offset to align adjacent <div>s. This leaves the original space where the div would have been. The extra space is shifted below the footer because you have height set on the html and body elements in your CSS. I would suggest: 1) remove all percentage heights from your CSS 2) use position: absolute to vertically align adjacent divs as this will take it out of the flow of the document and not leave extra space Regards, Kepler ******************************************************************* List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm Help: [EMAIL PROTECTED] *******************************************************************
