Ads

Eliminate Sidebar Title

These days I am bothered by the title of a sidebar that can not be removed but before there is a change from Blogger to remove the sidebar title is easy enough to empty the box provided for the title but after a change becomes very difficult because we must make changes on our blog template.
To remove a title on the sidebar there are two different ways according to the results of an experiment that I do are:

1. Using CSS code.
2. Eliminate the source code from the title or an order to show the title in the sidebar in the template.

Step One:
1. Login to Blogger.com..
2. Click menu Design.
3. Click on Edit Html menu..
4. View and record the first ID Widget that will be removed. Suppose you want the widget ID is eliminateHTML1, HTML2 , HTML3 , HTML4.
5. After viewing and recording ID Widget one after the next step search code ]]></b:skin>. If you have found this place the code below just above ]]></b:skin>


#HTML1.title, #HTML2.title, #HTML3.title, #HTML4.title {
display:none
}



6. Click the button marked Image to see results and if it is in conformity with the desire click the Save Template button.
7. Done.


Step Two
Still on the Edit menu Html, check the little box beside writing Expand Widget Templates then search for sidebar title to eliminate Friend Link Under these headings there is code like below use (CTRL + F to search):

<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>


If you have found this to delete code:

<h2 class='title'><data:title/></h2>
</b:if>


Click the preview button to see results and if it is in conformity with the desire click the save button templates.

Done and good luck!