Thursday, September 19, 2013

How to Hide or Delete Blog's Title, Description in Blogger Header

Follow below steps to hide or delete blog title and description from blogger header.

Step 1 : go to blogger dashboard

Step 2 : click on template

Step 3 : click on edit template



Hide Blog Title:

To do this login at Blogger.com and click on Layouts link on Dashboard. Then click on Edit Html subtab of Template tab. First backup your template. 

Then scroll down to this code :
#header h1 {
margin:5px 5px 0;
padding:15px 20px .25em;
line-height:1.2em;
text-transform:uppercase;
letter-spacing:.2em;
font: normal normal 200% Georgia, Serif;
display:none; /*<---Insert this line*/
}


Hide Blog Description:

To hide the blog description scroll down to this code in the blog template :

#header .description {
margin:0 5px 5px;
padding:0 20px 15px;
max-width:700px;
text-transform:uppercase;
letter-spacing:.2em;
line-height: 1.4em;
font: normal normal 78% 'Trebuchet MS', Trebuchet, Arial, Verdana, Sans-serif;
color: #999999;
display:none; /*<---Insert this line*/
}

No comments:

Post a Comment