Tag cloud is a collection of labels which are beautifully categorized. Hope you may have seen it in many other blogs.Not only in blogger , wordpress but also in web sites too. Now lets see how to add this tag cloud.
<b:widget id='Label88' locked='false' title='Labels' type='Label'
Now follow the Safety Saving Steps.
And
1. Edit your Template
2. Now find out
<b:section class='sidebar
( press 'Ctrl' + F to open your browser's search box)
Now you will find a code line similar to
<b:section class='sidebar' id='sidebar' preferred='yes'>
now just after it , paste these code lines
2. Now find out
<b:section class='sidebar
( press 'Ctrl' + F to open your browser's search box)
Now you will find a code line similar to
<b:section class='sidebar' id='sidebar' preferred='yes'>
now just after it , paste these code lines
<b:widget id='Label88' locked='false' title='Labels' type='Label'
>
<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'>
<div id='Labelcloud'>
</div>
</div>
<script language='javascript' type='text/javascript'>
function Magnifytxt() {
var max = 0;
var min = 10000;
<b:loop values='data:labels' var='label'>
if (<data:label.count/> > max)
max = <data:label.count/>;
if (<data:label.count/> < min)
min = <data:label.count/>;
</b:loop>
var display = "";
<b:loop values='data:labels' var='label'>
var delta = <data:label.count/> - min;
var size = 80 + (delta * 100) / (max - min);
display = display + "<span style='font-size:" + size + "%'><aexpr:href='data:label.url + "?max-results=100"' style='text-decoration:none;'><data:label.name/></a></span> ";
</b:loop>
obj = document.getElementById('Labelcloud');
obj.innerHTML = display;
}
Magnifytxt();
</script>
<b:include name='quickedit'/>
</b:includable>
</b:widget>Now follow the Safety Saving Steps.
And