Removing the Blog title from Blogger
So this weekend I was redesigning my blog and for the life of me I couldn’t figure out how to remove the title and description from my Blogger page. First, I tried deleting the section that calls the title but that didn’t work, it just left a blank box at the top of my page. The secret, it turned out, was only one line of code which appears in the following script in bold…
/* text
———————————————– */#header h1 {
color: $blogTitleColor;
font: $pageTitleFont;
display:none}#header .description {
margin: 0;
padding: 7px 16px 0 84px;
color:
$blogDescriptionColor;
font: $blogDescriptionFont;
display:none}
So just look for this script, or a variation (each theme is different) in the header of your template, drop in the display:none script and you’re done!
This is how I went from this…

…to the way the page looks now. I didn’t figure out on my own, Cowboysengines gets all the credit!





No worries – glad I could help
Took me ages to figure that bloody thing out…