Skip to content

Instantly share code, notes, and snippets.

@JudeRosario
Created March 1, 2016 12:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JudeRosario/4755278004321f7afdcb to your computer and use it in GitHub Desktop.
Save JudeRosario/4755278004321f7afdcb to your computer and use it in GitHub Desktop.
add_action('wp_footer', 'custom_CSS') ;
function admin_CSS() {
echo <<<'CSS'
<style>
.ms-html #wpfooter {
z-index: 99999;
position: fixed;
display: block;
}
</style>
CSS;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment