Remove Title & Description From Blogger Header
- Log into your blogger profile and go to Dashboard.
- Navigate to Layout & Edit HTML.
- Search for #Header h1 in your HTML code. If you don’t find this code, you may search for another piece of code #Header .description.
- Now insert display:none; at the end of the above code.
- Look at the below code to get the idea.
#header .description { /*-- this is header description css*/
margin:5px 5px 0;
padding:15px 20px .25em;
line-height:1.2em;
display:none; /*--Insert this line*/ }
Post a Comment