• Resolved sam01389

    (@sam01389)


    Can you please look into this?

    When I use desktop, footer shows in middle of the page. please see image. orange highlighted area is below footer. Its not happening when I use laptop.

    https://bit.ly/1uTL3zj

Viewing 7 replies - 1 through 7 (of 7 total)
  • hannah

    (@hannahritner)

    Hey, try adding this to your custom css box in theme options > advanced settings:

    @media (min-width: 992px) {
    html, body {
    height: 100%;
    }
    html body.wide #wrapper.container {
    min-height: 100%;
    position: relative;
    padding-bottom: 88px !important;
    }
    #containerfooter {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    }
    }

    Hannah

    hannah

    (@hannahritner)

    This is happening because there isn’t enough content on the page to push it down. But the above code should fix it.

    Thread Starter sam01389

    (@sam01389)

    Hey hannah ..

    Thanks for your reply but problem is still there. Check this link. I want footer should not move either there is content or not.

    https://www.bmania.in/contact-us/

    hannah

    (@hannahritner)

    I just checked in three different browsers and the footer appears at the bottom in all. Which browser are you using?

    Thread Starter sam01389

    (@sam01389)

    Safari private mode in Ipad. Is it device specific issue ?

    hannah

    (@hannahritner)

    Not necessarily device, but browser and screen size. I re-sized me screen and can see your issue. Try removing the above code and adding this:

    @media (min-width: 400px) {
    html, body {
    height: 100%;
    }
    html body.wide #wrapper.container {
    min-height: 100%;
    position: relative;
    padding-bottom: 88px !important;
    }
    #containerfooter {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    }
    }

    Thread Starter sam01389

    (@sam01389)

    Perfect, Many many thanks. ??

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Footer in middle on desktop’ is closed to new replies.