Sidebar usually contains important widgets like Search Bar, Popular Post, Facebook like widget etc. All these widgets have title appearance which is same for all the widgets and that are controlled through your template. So today in this post I will tell you to remove title or heading appearance for a particular widget. From figure you can seen that I have removed the tittle of Facebook like page by making a small modification in blogger Template. you can also easily remove the tittle of any sidebar widget. So lets start the tutorial.
In Blogger Dashboard Go to Design / Edit HTML.
Click "Expand Widget Template".
Download the Full template before making any changes in it
How to Remove Title OF Blog Archive:-
Search for following piece of code and remove the red part from the code.
<b:widget id='BlogArchive1' locked='false' title='Blog Archive' type='BlogArchive'>
<b:includable id='main'>
<b:if cond='data:title'>
<h2><data:title/></h2>
</b:if>
<div class='widget-content'>
<div id='ArchiveList'>
How to Remove Title OF Labels:-
Search for following code and remove the red part of the code.
<b:widget id='Label1' locked='false' title='Labels' type='Label'>
<b:includable id='main'>
<b:if cond='data:title'>
<h2><data:title/></h2>
</b:if>
<div expr:class='"widget-content " + data:display + "-label-widget-content"'>
In Blogger Dashboard Go to Design / Edit HTML.
Click "Expand Widget Template".
Download the Full template before making any changes in it
How to Remove Title OF Blog Archive:-
Search for following piece of code and remove the red part from the code.
<b:widget id='BlogArchive1' locked='false' title='Blog Archive' type='BlogArchive'>
<b:includable id='main'>
<b:if cond='data:title'>
<h2><data:title/></h2>
</b:if>
<div class='widget-content'>
<div id='ArchiveList'>
How to Remove Title OF Labels:-
Search for following code and remove the red part of the code.
<b:widget id='Label1' locked='false' title='Labels' type='Label'>
<b:includable id='main'>
<b:if cond='data:title'>
<h2><data:title/></h2>
</b:if>
<div expr:class='"widget-content " + data:display + "-label-widget-content"'>