Attach footer to the bottom of the page

Home Forums Support Attach footer to the bottom of the page

Home Forums Support Attach footer to the bottom of the page

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #27547
    Ivan Kudinov

    Can you add the ability to attach footer to the bottom of the page?

    #27801
    Tom
    Lead Developer
    Lead Developer

    You can do something like this:

    .site-info {
          position:fixed;
          bottom: 0;
          width: 100%;
    }

    Then you’ll need to add some spacing to the bottom of your body tag so the footer doesn’t hide stuff behind it. You’ll need to find the height of your footer, and then add the following:

    body {
          padding-bottom: 100px;
    }

    Adjust the 100px so it works with your site 🙂

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.