• Does anyone know how to get the footer to stay at the bottom center of the page.

    I used the following code in the custom css:

    footer#footer {
      position: absolute;
      bottom: 0;
    }

    It made it stick to the bottom of the page but for whatever reason it made it a fixed 1200px width and was aligned left, not in the center.

Viewing 1 replies (of 1 total)
  • You need to remove position option or to make it relative. If you want to center widgets content you can use

    footer#footer {
      text-align: center;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Footer stick to bottom’ is closed to new replies.