Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #340427

    Is there a way to fix the footer to the bottom of the page?

    Some of my pages have very little content and my footer is halfway up the page, I just want it to stay as a thin section across the bottom.

    Thanks in advance

    #340431

    Hey!

    Try adding this code to the Quick CSS:

    .container_wrap .container{
    min-height: 600px;
    }

    Cheers! 
    Josue

    #340445

    Hi,

    That code affected the header and not the footer?

    #340696

    Hi!

    Please try adding following code to Quick CSS

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

    Best regards,
    Yigit

    #505179

    Hi Extreme delay in getting this done.

    The above hasn’t worked.

    You can see the issue here: http://schuttiesfasteners.com.au/catalogue/

    #505209

    Hi!

    Use this code:

    #main .content{
        min-height: 600px;
    }
    

    Regards,
    Josue

    #505270

    Hi,

    This places the footer past the bottom of my screen. I would like the footer to stay attached to the bottom of my screen at all times, also to cater for the different screen resolutions of my customers.

    #505310

    Try with this:

    html{
        background: white;
    }
    #socket {
        position: fixed;
        width: 100%;
        bottom: 0px;
    }
    #506162

    That worked a treat, thanks for the amazing support!

    #506248

    You are welcome, glad to help :)

    Regards,
    Josue

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Fixed Footer’ is closed to new replies.