Add Beautiful/Stylish Breadcrumb Navigation Menu/Bar above post titles To Blogger. In this tutorial you can know how to add breadcrumb-navigation to your blogger.
Actually this help your visitors to track their position by the post.This navigation appear on top of your post.So, you can try it.Follow these steps to add it to your blog. If your post contains too many labels, only one label is shown in this breadcrumb
Actually this help your visitors to track their position by the post.This navigation appear on top of your post.So, you can try it.Follow these steps to add it to your blog. If your post contains too many labels, only one label is shown in this breadcrumb
How To Add Beautiful/Stylish Breadcrumb Navigation Menu/Bar above post titles To Blogger
- Go to Blogger Dashboard
- Click on DropDown Menu and select Template
- Backup your Template before making any changes to your blog
- Now Click on Edit HTML --> Proceed --> Expand Widget Templates
- Press Ctrl + F and search the code shown below
]]></b:skin>
- Now Paste the Code shown below just before/above it
/* Breadcrumb Code by http://www.latesthack.com */
.breadcrumbs {-moz-box-shadow: 0px 0px 7px #939390;-webkit-box-shadow: 0px 0px 7px #939390;box-shadow: 0px 0px 7px #939390;
/* For IE 8 */
ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#939390')";
/* For IE 5.5 - 7 */
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#939390');border: 1px double #FDFDFD;font-size: 15px;line-height: 1.4em;margin: 0 5px 5px;padding: 5px 5px 5px 0;}
.breadcrumbs a {margin:5px; font-size:13px; color:purple }
.breadcrumbs a:hover {color:#dc0771}
/* Breadcrumb Code by http://www.latesthack.com */
.breadcrumbs {-moz-box-shadow: 0px 0px 7px #939390;-webkit-box-shadow: 0px 0px 7px #939390;box-shadow: 0px 0px 7px #939390;
/* For IE 8 */
ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#939390')";
/* For IE 5.5 - 7 */
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#939390');border: 1px double #FDFDFD;font-size: 15px;line-height: 1.4em;margin: 0 5px 5px;padding: 5px 5px 5px 0;}
.breadcrumbs a {margin:5px; font-size:13px; color:purple }
.breadcrumbs a:hover {color:#dc0771}
/* Breadcrumb Code by http://www.latesthack.com */
- Now Search <b:include data='top' name='status-message'/> and replace it with the code shown below
<!-- Breadcrumb Code by http://www.latesthack.com -->
<b:include data='top' name='status-message'/>
<b:include data='posts' name='breadcrumb'/>
<!-- Breadcrumb Code by http://www.latesthack.com -->
<b:include data='top' name='status-message'/>
<b:include data='posts' name='breadcrumb'/>
<!-- Breadcrumb Code by http://www.latesthack.com -->
- Now Seach <b:includable id='main' var='top'> and replace it with the code shown below
<!-- Breadcrumb Code by http://www.latesthack.com -->
<b:includable id='breadcrumb' var='posts'>
<b:if cond='data:blog.homepageUrl == data:blog.url'>
<!-- No breadcrumb on home page -->
<b:else/>
<b:if cond='data:blog.pageType == "item"'>
<!-- breadcrumb for the post page -->
<p class='breadcrumbs'>
<span class='post-labels'>
<a expr:href='data:blog.homepageUrl' rel='tag'>Home</a>
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.labels'>
<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:else/>
»Unlabelled
</b:if>
» <span style='font-size:13px;'><data:post.title/></span>
</b:loop>
</span>
</p>
<b:else/>
<b:if cond='data:blog.pageType == "archive"'>
<!-- breadcrumb for the label archive page and search pages.. -->
<p class='breadcrumbs'>
<span class='post-labels'>
<a expr:href='data:blog.homepageUrl'>Home</a> » Archives for <data:blog.pageName/>
</span>
</p>
<b:else/>
<b:if cond='data:blog.pageType == "index"'>
<p class='breadcrumbs'>
<span class='post-labels'>
<b:if cond='data:blog.pageName == ""'>
<a expr:href='data:blog.homepageUrl'>Home</a> » All posts
<b:else/>
<a expr:href='data:blog.homepageUrl'>Home</a> » Posts filed under <data:blog.pageName/>
</b:if>
</span>
</p>
</b:if>
</b:if>
</b:if>
</b:if>
</b:includable>
<b:includable id='main' var='top'>
<!-- Breadcrumb Code by http://www.latesthack.com -->
<b:includable id='breadcrumb' var='posts'>
<b:if cond='data:blog.homepageUrl == data:blog.url'>
<!-- No breadcrumb on home page -->
<b:else/>
<b:if cond='data:blog.pageType == "item"'>
<!-- breadcrumb for the post page -->
<p class='breadcrumbs'>
<span class='post-labels'>
<a expr:href='data:blog.homepageUrl' rel='tag'>Home</a>
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.labels'>
<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:else/>
»Unlabelled
</b:if>
» <span style='font-size:13px;'><data:post.title/></span>
</b:loop>
</span>
</p>
<b:else/>
<b:if cond='data:blog.pageType == "archive"'>
<!-- breadcrumb for the label archive page and search pages.. -->
<p class='breadcrumbs'>
<span class='post-labels'>
<a expr:href='data:blog.homepageUrl'>Home</a> » Archives for <data:blog.pageName/>
</span>
</p>
<b:else/>
<b:if cond='data:blog.pageType == "index"'>
<p class='breadcrumbs'>
<span class='post-labels'>
<b:if cond='data:blog.pageName == ""'>
<a expr:href='data:blog.homepageUrl'>Home</a> » All posts
<b:else/>
<a expr:href='data:blog.homepageUrl'>Home</a> » Posts filed under <data:blog.pageName/>
</b:if>
</span>
</p>
</b:if>
</b:if>
</b:if>
</b:if>
</b:includable>
<b:includable id='main' var='top'>
<!-- Breadcrumb Code by http://www.latesthack.com -->
11 comments
I think there is a type-o. You say to search for
<b:includable id='main' var='top'> twice.. so once it's replaced it can't be found again.
@Laura @ Hip Pressure Cooking@Laura @ Hip Pressure Cooking
Thanks For Informing ...
and now problem has been resolved
@sonuHow you put this threaded replies
Can that be used in Wordpress.com blog or just in Blogger? Thanks.
@EvitaTo install it in wordpress Go Here http://wordpress.org/extend/plugins/breadcrumb-navxt and download that plugin after that upload it in your wordpress blog
I am getting this error :(
The widget with id "Blog1" cannot contain element: "#comment". A widget can only contain b:includable elements.
@Tanmay Kapse You have done something wrong try out with more attension
is it possible on multiple lables blog post???
@Em Ji Madhu Yes it is possible but it shows only one label of the post
@sonu yeah that is enough for me... how can i make it???
@Tanmay Kapse i get the same problem...
Click to Add a New Comment