web-dev-qa-db-fra.com

comment supprimer margin-top: 32px! important sur vingt-douze

Je souhaite supprimer la propriété margin-top du thème vingt-douze. C'est le thème par défaut fourni par wordpress. L'exemple du code que j'ai trouvé avec l'aide de firebug.

html{
     margin-top: 32px !important;
    }
11
uniqueman
function remove_admin_login_header() {
    remove_action('wp_head', '_admin_bar_bump_cb');
}
add_action('get_header', 'remove_admin_login_header');
29
l2aelba

Ajoutez la fonction suivante à votre fichier functions.php

function my_function_admin_bar(){ return false; }
add_filter( 'show_admin_bar' , 'my_function_admin_bar');
5
Chad Bonthuys

Accédez au fichier de fonctions dans votre dossier de thèmes:

functions.php

add_action('get_header', 'remove_admin_login_header');

function remove_admin_login_header() {
    remove_action('wp_head', '_admin_bar_bump_cb');
}
2
drjorgepolanco

dans le style.css autour de la ligne n ° 1645, corps .site {comportant un rembourrage supérieur et inférieur:

body .site {
    padding: 0 40px;
    padding: 0 2.857142857rem;
    margin-top: 48px;
    margin-top: 3.428571429rem;
    margin-bottom: 48px;
    margin-bottom: 3.428571429rem;
    box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
}
0
M21