Reputation: 7
The easiest way is to observe this live
Homepage footer (looks good): www.fishingreports.com
Screwed up footer: www.fishingreports.com/users/register
Whenever I export the code from /users/register onto another page like this: www.fishingreports.com/texas/lake-texoma
you can see the footer also goes haywire. I'm sure I'm missing something here that keeps the rest of the page in line.
Something interesting to note is that when there is OTHER STUFF on the page the footer acts fine, but when the form is the semi-last thing on the page the footer screws up. Compare these two pages:
http://www.fishingreports.com/washington/lake-saint-clair (good) http://www.fishingreports.com/washington/lake-leota (bad footer!)
Thanks!
Upvotes: 0
Views: 108
Reputation: 4503
On the pages where the footer is messed up the footer is a part of the container div
, causing the padding to apply and the size of the footer to be reduced.
You most probably have an unclosed div issue, this tool can help you with that: http://validator.w3.org/check?uri=http%3A%2F%2Fwww.fishingreports.com%2Fusers%2Fregister&charset=%28detect+automatically%29&doctype=Inline&group=0
Good luck.
Upvotes: 1