Site logo

[Support request] Footer at the bottom

Home Forums Support [Support request] Footer at the bottom

Home Forums Support Footer at the bottom

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #2574299
    Karol Öman

    Hey, how can I fix so my footer stays at the bottom?

    #2574354
    David
    Staff
    Customer Support

    Hi there,

    the simplest solution is to edit any page where it is too short to fill the screen, and add some extra padding.

    Otherwise you can use some CSS:

    html {
        height: 100%;
    }
    body {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .site-footer {
        margin-top: auto;
    }

    But i would recommend you use the first method

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