Remove the 32px margin-top added by the admin bar
/**
* Remove the 32px margin-top added by the admin bar
*/
function smart_remove_admin_bar_margin() {
remove_action('wp_head', '_admin_bar_bump_cb');
}
add_action('get_header', 'smart_remove_admin_bar_margin');