White gap after removing WP Admin Bar

[ad_1]

Hello, I wanted to remove the WP admin bar from my website when someone logs in, but apparently now there's a white gap that is the exact size of the WP admin bar, when I enabled it back the gap disappeared, I have checked css for any padding or margin but they're all 0, can anyone help me please?

[ad_2]
2 Comments
  1. How are you removing the admin bar?

    Using CSS, you can do this. Will apply the margin if the bar is present. If not, will remove it.

    html { margin-top: 0; }
    body.admin-bar { margin-top: 32px !important; }

    The problem is, sometimes, even when the bar is removed, WordPress loads the file /wp-includes/css/admin-bar.min.css and applies that margin. With that CSS you override it.

    However, using

    add_filter(‘show_admin_bar’, ‘__return_false’);

    You should get rid of the bar and all associated styles.

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer