The first think we learn about the SEO is the funcion of the meta tags, in particular of the title, and the importance to have the relevant keywords at the beginning of our tags.
By default Blogger put the name of our blog before the post title but we can in any moment change and optimize it; infact we can decide to have the post title before our blog name or only the post title alone.
If you want now to change it you have to open your blog setting click on Layout and select Edit HTML.
Than you have to search for the meta title default:
<title><data:blog.pageTitle/></title>and modify it with one of the two below.
If you want to have the post title before your blog name
<b:if cond='data:blog.pageType == "item"'><title><data:blog.pageName/> - <data:blog.title/></title><b:else/><title><data:blog.pageTitle/></title></b:if>In this case you can also reach a "branding goal" cause your blog name will appear in the search results.
If you want a title composed only by the post title alone:
<title><data:blog.pageName/></title><b:else/><title><data:blog.pageTitle/></title></b:if>Now you can save the setting and visulize your blog.
