Advertisement
Guest User

Untitled

a guest
Jun 4th, 2011
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1. // Move Admin Bar to bottom
  2. add_action('wp_head', 'stick_admin_bar_to_bottom_css');
  3. function stick_admin_bar_to_bottom_css() {
  4.         echo "
  5.        <style type='text/css'>
  6.        html {
  7.                padding-bottom: 28px !important;
  8.        }
  9.  
  10.        body {
  11.                margin-top: -28px;
  12.        }
  13.  
  14.        #wpadminbar {
  15.                top: auto !important;
  16.                bottom: 0;
  17.        }
  18.  
  19.        #wpadminbar .quicklinks .menupop ul {
  20.                bottom: 28px;
  21.        }
  22.        </style>
  23.        ";
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement