Hi We recently made some changes to the design of our site wootish.com (link on signature) and if you look at the footer now, it is not showing properly. For one, the horizontal rule is not displaying to the entire width despite it being programmed to show 100% width. It also doesn't seem centered. Any help regarding this would be much appreciated.
You've declared your footer in an ID when in the stylesheet it's a class. Change: <div id="footer"> to <div class="footer">
Thanks scottlpool2003. I tried it earlier as well as tried it now. What it does is make the position=absolute irrelevant. Consequently, this leaves my footer hanging mid-air like this:
It looks okay my end. I see you have: Are you meant to have 2 closing divs after the footer or should it be: You could try clearing the DIV before the footer with:
Aah..thanks a lot. I realized I need to add a </div> above the footer. I just moved one of those /div over the footer and now it appears perfect. Again, your help is much appreciated, scottlpool2003