As with all tutorials that involve changing your template’s code, it is always good practice to back up your template first before proceeding. But if you think you’re all set then feel free to proceed.
- Starting from your Blogger dashboard, go to ‘Template’ then ‘Edit HTML’
- Tick or put a check mark on the ‘Expand Widget Templates’ box
Look for the following piece of code (by pressing ‘Ctrl+F’) then just delete the code highlighted in red.
<b:widget id='HTML1' locked='false' title='Find us on Facebook'
type='HTML'>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title'>
<h2><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
To remove the title for the ‘Subscribe Via Email’ widgetLook for the following piece of code then just delete the code highlighted in red.
<b:widget id='HTML2' locked='false' title='Subscribe via email'
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>
To remove the title for the ‘Blog Archive’ widgetLook for the following piece of code then just delete the code highlighted in red.
<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'>
To remove the title for the ‘Labels’ widgetLook for the following piece of code then just delete the code highlighted in red.
<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"'>
So basically, all you have to do is look for the code highlight in red in any widget that you want the title removed.
0 comments:
Post a Comment