WordPress Admin Bar is new features introduced in WordPress 3.1. This feature is small bar on the top that we use to quick access to admin features such as Add New Post and Page, Edit Profile, Edit Comment, Check Stats, Edit Widget and many more.
WPEngineer show some tips how to move the admin bar from the top to bottom of the screen. You need to copy and paste this code and place it on your functions.php
Move the Admin Bar to the bottom Code
// move admin bar to bottom
function fb_move_admin_bar() { ?>
<style type="text/css">
body {
margin-top: -28px;
padding-bottom: 28px;
}
body.admin-bar #wphead {
padding-top: 0;
}
body.admin-bar #footer {
padding-bottom: 28px;
}
#wpadminbar {
top: auto !important;
bottom: 0;
}
#wpadminbar .quicklinks .menupop ul {
bottom: 28px;
}
</style>
<?php }
// on backend area
add_action( 'admin_head', 'fb_move_admin_bar' );
// on frontend area
add_action( 'wp_head', 'fb_move_admin_bar' );
That’s it, now your WordPress Admin Bar has been moved from the top to the bottom of the screen. Another solution coming from Coen Jacobs’. On this method using some plugin. This plugin is GPL so you can download this plugin on this page and follow this guide how to activated
Stick Admin Bar Plugin Installation
- Upload
stick-admin-bar-to-bottomfolder to the/wp-content/plugins/directory - Activate the plugin through the ‘Plugins’ menu in WordPress
- Enjoy the Admin Bar at the bottom of the pages where it is shown
That’s it, now you have different method to move your Admin Bar into bottom. Choose which one you like and enjoy
Image Source http://www.flickr.com/photos/fugue/31523548/




Pingback: WordPress Code Snippets and Detailed Tutorials | eXpand yOur cReativity
Pingback: GeekCasa – How To Add More Button on Visual Mode WordPress Editor
Pingback: 19 Useful Wordpress Snippets & Tutorials - Design Freebies