Page 1 of 1

how to make Manhattan footer sticky

Posted: 29 Sep 2017, 20:40
by agrouza
hi, i was wondering how to make manhattan footer sticky? i don't really understand why it is not in the first place... on pages with small amount of inputs and large screens it is displayed right in the middle of the screen :(. can you please help?

thanks,
a.

Re: how to make Manhattan footer sticky

Posted: 09 Oct 2017, 13:57
by merve7
You can try this for sticky footer;

in _main.scss

Code: Select all

.layout-footer{
            position: fixed;
            bottom: 0;
            width: 100%;
           //maybe, z-index or other position elements
           //other codes
}
or

Code: Select all

.layout-footer{
            position: sticky;
            bottom: 0;
           //other codes
}
But, note: IE/Edge 15 and earlier versions do not support sticky position.