How To Hide Title From Blogger Header

Posted by Lasantha Bandara File Under : change template, html, title 17 Comments

1.Log in to your dashboard--> layout- -> Edit HTML

2.Scroll down to where you see this :

#Header h1

Look at the picture below.

3.Copy below code and paste it after above line.

display:none;

Look at the example below.

4.Now save your template and you are done.

17 thoughts on “How To Hide Title From Blogger Header

  1. I don't find the #header h1 code but I can hide that blog title.. yeah
    http://mulyanovaln.blogspot.com 😀

  2. That code also controls the titles in the tabs above the header on my blog, so if I remove the title I also remove the titles in the tabs. Is there another solution?

  3. is it possible to make it invisible because i want the gap where the title used to be to stay so i can put the title on my background image and have it show through

  4. if you cant find the

    #header

    try going to edit html of the page
    press ctrl+f
    type header h1

    there would come up some results

    look for these
    Header h1 {
    then below put the display:none;

    should be like this
    .Header h1 {
    display: none;
    font: $(header.font);
    color: $(header.text.color);

    just add the display:none;
    the font and color is along with the code..

    hope this helps

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.