Deprecated: Function get_currentuserinfo is deprecated since version 4.5.0! Use wp_get_current_user() instead. in /var/www/html/wp-includes/functions.php on line 5383

Reply To: Stopping footer "float"?

New Front EN Support Forums Kabuki Theme Support Stopping footer "float"? Reply To: Stopping footer "float"?

#11125

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%;
}