Support » Theme: OceanWP » Keep footer at the bottom

  • Hi,

    I’m experiencing weird behaviour of footer not keeping to the very bottom of the page in different scenarios. For example https://aska-knives.pl/kontakt/ displays footer way above the bottom on my 1920 x 1080 monitor, home page displays footer also above bottom on mobile.. I don’t know what’s the rule behind it.. Any ideas what might be wrong? A help is appreciated!

    Robert

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    Try to add the below code to the Customize > Custom CSS section to fix it –

    div#wrap {
        min-height: 100vh;
    }
    footer#footer {
        position: absolute;
        width: 100%;
        bottom: 0;
    }
    Thread Starter robs23

    (@robs23)

    Hi Amit,

    Thanks, works great! 🙂 Which is surprising a bit as I tried before the below but it worked only on some pages:

    footer#footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    }

    Nevertheless, it works and that’s the most important! 🙂

    You’re welcome!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Keep footer at the bottom’ is closed to new replies.