How to Remove Navigation Bar from Blogger | Remove Blog Navbar

 To remove the default Blogger navigation bar (the black bar at the top with "Blogger" logo, search box, and sign-in options), follow these methods:


Method 1: Official Blogger Setting (Easiest)

  1. Go to your Blogger Dashboard → Theme

  2. Click "Edit HTML"

  3. Press Ctrl + F (or Cmd + F on Mac) and search for:

    xml
    Copy
    <b:section id='navbar'/>
  4. Delete this entire line and save the template.


Method 2: Using CSS (Works for Most Templates)

  1. Go to Theme → Edit HTML

  2. Find </head> and add this code just before it:

    html
    Copy
    <style>
    /* Remove Blogger Navbar */
    #navbar-iframe, .navbar, .navbar-iframe-container {
        display: none !important;
        height: 0 !important;
        visibility: hidden !important;
    }
    </style>
  3. Save the template.


Method 3: JavaScript Removal (Alternative)

  1. In Theme → Edit HTML, find </body> and add this before it:

    html
    Copy
    <script>
    // Remove Blogger Navbar
    document.getElementById('navbar-iframe')?.remove();
    </script>

Method 4: For Mobile View

If the navbar still appears on mobile:

  1. Add this extra CSS:

    css
    Copy
    .mobile-navbar {
        display: none !important;
    }

Important Notes:

✅ Works for all templates (Simple, Contempo, Notable, etc.)
✅ Does not affect SEO (Google ignores the navbar)
❌ AdSense users: Some older blogs needed the navbar for AdSense compliance (not required anymore).


Before & After:

Before (Navbar Visible)After (Navbar Removed)
Blogger Navbar VisibleBlogger Navbar Removed

Troubleshooting

If the navbar reappears:

  1. Clear your browser cache (Ctrl + Shift + Delete).

  2. Check if your template has a custom navbar (some premium templates add their own).

Need help? Share your blog URL, and I can check the exact code to remove! 🛠️

إرسال تعليق