On your dashboard switch to the Edit HTML tab of your template and find this line:
<b:include data='blog' name='all-head-content'/>
You can find this just below the <head> section of your template.
Then put this code just below the <b:include data='blog' name='all-head-content'/> tag
<b:if cond='data:blog.url == "http://YOUR-BLOG-URL.com/"'>
<meta content='DESCRIPTION' name='description'/>
</b:if>
This was done to add META Tags to the main page of the blog.
To change the META Tag for each blogger post,
copy and paste this code just below the code you just added
<b:if cond='data:blog.pageType == "item"'>
<meta expr:content='data:blog.pageName' name='Description'/>
</b:if>
That's it, save your template and your done!
How to control the Attribution gadget when using the Template Designer
-
If you are using one of Blogger's new templates, you'll notice an
"Attribution" widget which appears at the very bottom of your site. This
will contain d...
12 years ago