Breadcrumb Navigation is terms of seo (search engine optimization), Google already support this breadcrumb. How to Create a Menu Breadcrumb Navigation In Blog
To see results from a blog that has been made breadcrumb / navigation menus above post can see the picture.
Steps On How To Make Breadcrumb Blogger
First, make sure you have made the label on the blog.
Then, go to the Dashboard, select Layout and then select Edit HTML, do not forget to tick Expand Widget Templates.
Next find the following code (use Ctrl + F on your keyboard to aid search):
<b:includable id='main' var='top'>
when you have found the code, put this code Above it..
<b:includable id='breadcrumbs' var='post'>
<!-- Breadcrumbs hack. By Hoctro 9/11/2006 http://hoctro.blogspot.com -->
<b:if cond='data:blog.pageType == "item"'>
<p class='breadcrumbs'>
<span class='post-labels'>
<b:if cond='data:post.labels'>
Browse:
<a expr:href='data:blog.homepageUrl' rel='tag'>Home</a> >
<b:loop values='data:post.labels' var='label'>
<b:if cond='data:label.isLast == "true"'>
<a expr:href='data:label.url' rel='tag'> <data:label.name/></a>
</b:if>
</b:loop>
<b:if cond='data:post.title'>
> <b><data:post.title/></b>
</b:if>
</b:if>
</span>
</p>
</b:if>
<!-- End of Breadcrums Hack -->
</b:includable>
and put this code Above it.
Also find this code ]]></b:skin><b:include data='post' name='breadcrumbs'/>
then put this code Above it.
Save template and you'r DONE..breadcrumbs {
border-bottom:1px dotted #000;
margin:2em 0 0.5em;
padding:0 0 0.5em;
}
Dont forget to Comment this post guys.. --------------------------------------------------------------------------------------------------------------------------------------------------