tags:

views:

12

answers:

1

Over at this page I'm having some trouble with the width of my foot <div>. Is there an explainable reason why my footer is stretching the width of the browser window, while my header <div> isn't?

Thanks!

+2  A: 

Download Firebug.

Your header is inside a table with width = 780px. Your footer is inside a table with width = 100%.

Martin
Thanks, would you know how to align the text inside of this? I've tried `text-align`, `margin` and `align`..
BOSS