0

I have modified App footer to stay at the bottom of the page if the page content is little. So it wouldn't left free space afterwards. It works just great.

But now I discovered that in pages where content is much more than it fits in current window, footer has stayed at the same place, but the content expands in background of footer. It looks like

this

My CSS for footer.

#footerCntr { 
    position:absolute;
    bottom:0;
    width:100%; 
    overflow: hidden; 
    background:#e7e7e7; 
    border-top:3px solid #b7b7b7; 
    margin:11px 0px 0px 0px;  
}

.footerBox{
    width:780px; 
    margin: 0px auto; 
    padding:11px 0px 14px 0px;
}

.footerBoxLeft{
    float:left; 
    width:176px; 
    padding:8px 0px 9px 26px; 
    background:url(bordery.gif) right top repeat-y;
}

.footerBoxLeft img{
    float:left; 
    margin:0px 0px 0px 2px;
}

.footerBoxRight{
    float:right; 
    width:575px; 
    padding:0px 0px 10px 0px;
}

.footerlink ul{ 
    padding:7px 0px 5px 0px;
}

.footerlink ul li{
    list-style:none; 
    padding:0px 10px 0px 10px; 
    display:inline; 
    background:url(devider.gif) 0px 3px no-repeat;
}

.footerlink ul li a{
    font:10px Tahoma , Arial, Helvetica, sans-serif; 
    color:#535353; 
    text-decoration:none; 
    padding:0px 0px 0px 0px;
}

.footerlink ul li a:hover{
    text-decoration:underline;
}

.copyright{
    color:#535353; padding:0px 0px 0px 10px;
}

.copyright a{
    font:10px Tahoma , Arial, Helvetica, sans-serif; 
    color:#535353; 
    text-decoration:none; 
    padding:5px 0px 0px 0px;
}

.copyright a:hover{
    text-decoration:underline;
}

Link to my app problem. It could be problem with content CSS formating ?

here

pstenstrm
  • 6,339
  • 5
  • 41
  • 62
Edgars
  • 913
  • 1
  • 19
  • 53
  • 1
    possible duplicate of [Problem with CSS Sticky Footer implementation](http://stackoverflow.com/questions/1112082/problem-with-css-sticky-footer-implementation) – Jezen Thomas Jun 08 '14 at 13:17
  • 1
    [http://www.cssstickyfooter.com/](http://www.cssstickyfooter.com/) – Jezen Thomas Jun 08 '14 at 13:17
  • 1
    Is your footer inside a 'page-wrap' or just in 'body'? In this fiddle - http://jsfiddle.net/t3ZWW/ - remove the position: relative from the body and see what happens – TimSPQR Jun 08 '14 at 14:44

0 Answers0