1. Log in to blogger account and Go to Design >> Edit HTML
(make sure backup your template first)
2. Put checked mark in Expand Widget Templates
3. Now you have to press Ctrl+F key and type the unique title that you gave to gadget or widget.
Lets say you gave title as Subscribe, the code will show like this.
<b:widget id='HTML1' locked='false' title='Subscribe' type='HTML'>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:includable>
So,code start with <b:includable id=’main’> and end with </b:includable>
you have to find this both code.
lets see how to show this gadget in specific pages.
How to show blogger gadget in home page and other pages.(Except post pages.)
So,show gadget in home page and other pages.You have to add that red code like below.
<b:includable id='main'>
<b:if cond='data:blog.pageType == "index"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
How to show blogger gadget in Post pages only.
<b:includable id='main'>
<b:if cond='data:blog.pageType == "item"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
How to show blogger gadget in only specific page
<b:includable id='main'>
<b:if cond='data:blog.url == "URL of the page"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
you can replace URL of the page with URL which you want to show the gadget only that page.
7. Now save your template you are done.
Enjoy Guys! and don’t forget to post your comments. � MyTricksTime.com