Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,

    Thank you for your query.

    That’s considered as normal as it is designed that way. If you want add default height for the page content, you could add your own CSS rule in Additional CSS.

    Thread Starter anassal

    (@anassal)

    Please provide CSS as it looks very bad

    Hi @anassal,

    Try adding this CSS code to your site’s Additional CSS.

    .page-id-234 .entry-content {
      min-height: 100vh;
    }
    

    Replace 234 with your page ID number.

    Thread Starter anassal

    (@anassal)

    Working but it makes the page scrollable means it increases page size and you have to scroll for the footer. Is this CSS fine?, it works for me:

    html {
    height: 100%;
    }

    body {
    position: relative;
    margin: 0;
    padding-bottom: 5rem;
    min-height: 100%;
    }

    .bhfb-footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    }

    • This reply was modified 2 years, 9 months ago by anassal.

    Thank you for getting back @anassal!

    Suggested 100vh above was just recommendation. Please note that the value is a fixed value that may need additional adjustments for particular case.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘footer’ is closed to new replies.