• Hello,

    I looked through customisation but never managed to do that:
    in this theme there is a space between the footer and the very bottom of the page.
    It looks like it is the page background (because we can change the color through this option) but even if we put the same color as in footer, because of the shade effect, it is visible.

    Is there any option or possibility through CSS to NOT see at all this page background or that the footer is perfectly at the bottom

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter fahara

    (@fahara)

    Using this CSS:

    #footer-wrapper {
        position: relative;
        bottom: 0;
        width: 100%;
        margin-bottom: 0;
    }
    
    @media (min-width: 68em) {
    .content-area {
        box-shadow: none;
    }
    }

    I was able to answer to my needs which were to no have a band visible after the footer. I assume that the first part of the code is not necessary but the more important was to erase the shadows. Then by setting the page background color the same color as footer, it looks as if there was no such bar

    Dear fahara,

    Thank you very much for sharing your solution

    Bert

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Footer not at the very bottom of the page’ is closed to new replies.