treehouse : what would you like to learn today?
Web Design Web Development iOS Development

no footer ??

  • I am working on this wordpress site.
    For some reason, the footer is not working. When I try to put a design credit on the bottom, it ends up on the top of the page.
    I also would like some space at the bottom of the page with more content, so the background show at the bottom beyond the main content div.

    I did what I thought would do the trick but nothing seems to be working

    http://www.michaelmcdonalddesigns.com

    footer[role=contentinfo] {padding-top: 100px;
    height: 100px;}

  • Your #content div is being absolutely positioned so it's being taken out of the flow of you document. You'll want to give it a position of relative or static instead.
  • THANK YOU!!