Remove top admin bar
http://vudu.me/88 Has an article about it. But basically /* Disable the Admin Bar. */ add_filter( ‘show_admin_bar’, ‘__return_false’ ); or also //REMOVE ADMIN BAR remove_action(‘init’, ‘wp_admin_bar_init’); I believe in your functions.php will disable it. Probably a better way than just hiding it thriough css THe reason you still get the gap with the menu hidden is … Read more