New Front EN › Support Forums › Kabuki Theme Support › Stopping footer "float"? › Reply To: Stopping footer "float"?
October 27, 2016 at 8:24 am
#11125
Member
Found this, which seems to be working nicely:
html {
position: relative;
min-height: 100%;
}
body {
margin: 0 0 100px; /* bottom = footer height */
}
footer {
position: absolute;
left: 0;
bottom: 0;
height: 35px;
width: 100%;
}
-
This reply was modified 8 years, 3 months ago by
CrackleFactory.