How to add Label cloud widget in Blogger Template Blog

"Blogumus" is an Flash based tag cloud widget which uses scripts converted from Roy Tanck's WP Cumulus plugin for Wordpress. I fell in love with Roy's original Cumulus plugin when I saw it, and simply had to learn how to convert this for use in Blogger powered blogs. The result is the widget you can see in action at the top of this post. Hover your mouse over the Flash object to see the animation begin. In this post, I'll explain how you can add Blogumus to your own Blogger layout with ease!


Update: Improved Widget Code I have updated the code required to run this widget to activate links in the tag cloud Flash movie. If you have already installed Blogumus, please replace your widget code with the new updated code, or reference the additional lines to modify your existing installation.

How it works

This widget uses a combination of JavaScript and Flash animation to parse and display your blog labels. Once installed in your template, it should work "out of the box" without any additional tweaking required, though of course you may prefer to change the variables for color, background and size if appropriate :) You should also be able to move the Label Cloud widget through the Page Elements page of your dashboard if you prefer display in a different layout location. To see Blogumus in action, both Flash and Javascript must be installed and enabled for your internet browser. However, it does degrade relatively gracefully, and label links will still be clickable (though not animated) for those who do not use JavaScript of Flash (including search engine spiders).

How to install Blogumus in your Blogger layout

Installing Blogumus in your Blogger layout is surprisingly simple! You should only need to copy and paste a section of code to your Blogger template, though any tweaks for the style of display will require some manual editing. Here are the steps required to install Blogumus in your Blogger layout: Go to Layout>Edit HTML in your Blogger dashboard, and search for the following line (or similar):






<b:section class='sidebar' id='sidebar' preferred='yes'>


Immediatly after this line, paste the following section of code:
  <b:widget id='Label99' locked='false' title='Labels' type='Label'>
<b:includable id='main'>
<b:if cond='data:title'>
<h2><data:title/></h2>
</b:if>
<div class='widget-content'>
<script src='http://halotemplates.s3.amazonaws.com/wp-cumulus-example/swfobject.js' type='text/javascript'/>
<div id='flashcontent'>Blogumulus by <a href='http://www.roytanck.com/'>Roy Tanck</a> and <a href='http://www.bloggerbuster.com'>Amanda Fazani</a></div>
<script type='text/javascript'>
var so = new SWFObject(&quot;http://halotemplates.s3.amazonaws.com/wp-cumulus-example/tagcloud.swf&quot;, &quot;tagcloud&quot;, &quot;240&quot;, &quot;300&quot;, &quot;7&quot;, &quot;#ffffff&quot;);
// uncomment next line to enable transparency
//so.addParam(&quot;wmode&quot;, &quot;transparent&quot;);
so.addVariable(&quot;tcolor&quot;, &quot;0x333333&quot;);
so.addVariable(&quot;mode&quot;, &quot;tags&quot;);
so.addVariable(&quot;distr&quot;, &quot;true&quot;);
so.addVariable(&quot;tspeed&quot;, &quot;100&quot;);
so.addVariable(&quot;tagcloud&quot;, &quot;<tags><b:loop values='data:labels' var='label'><a expr:href='data:label.url' style='12'><data:label.name/></a></b:loop></tags>&quot;);
so.addParam(&quot;allowScriptAccess&quot;, &quot;always&quot;);
so.write(&quot;flashcontent&quot;);
</script>
<b:include name='quickedit'/>
</div>
</b:includable>
</b:widget>

Then preview your template. If installed correctly, you should see the tag cloud appear in your sidebar. Then you are free to save your template, edit the colors and dimensions as required, or move it to a different location. That's all!

Customizing Blogumus

In this default installation, Blogumus includes the following preset variables:

  • Width is set to 240px
  • Height is set to 300px;
  • Background color is white
  • Test color is grey
  • Font size is "12"
If you would prefer to make your widget wider, shorter, change the color scheme, etc, you will need to do this by editing various parts of the code. I'll go through these options in the order they appear in the widget code. Editing width and height The variables for width and height are found in this line of the script:



var so = new SWFObject("http://halotemplates.s3.amazonaws.com/wp-cumulus-example/tagcloud.swf", "tagcloud", "240", "300", "7", "#ffffff");




The width (currently 240) is highlighted in red, while the height (300px default) is highlighted in blue. These numerical values specify the width and height in pixels, so you can alter these of you prefer. Editing background color You can change the background color from white to any other color by altering the hex value in the same line:



var so = new SWFObject("http://halotemplates.s3.amazonaws.com/wp-cumulus-example/tagcloud.swf", "tagcloud", "240", "300", "7", "#ffffff");




For example, if you prefer a bright red background, you may replace #ffffff with #ff0000. Take a look at this page for a list of commonly used hex color codes. Alter the color of text By default, the text is set to display as dark grey ( hex value #333333). You can alter this variable in the following line:


so.addVariable("tcolor", "0x333333");




Be aware that "tcolor" is a Flash variable and doesn't include the usual hash symbol of hex color codes. Be sure to only replace the numbers! Adjust the font size The maximum font size of tags is specified in this line:


so.addVariable("tagcloud", "<tags><b:loop values='data:labels' var='label'><a expr:href='data:label.url' style='12'><data:label.name/></a></b:loop></tags>");




You can alter this to ensure tags are displayed in a bigger or smaller font if you prefer by changing "12" to a larger or smaller number. While making any of these changes, you should be able to preview your widget and be certain that your new choice of color, dimensions and background are suitable for your needs.
Credits, support and requirements
Blogumus is based on the original WP Cumulus plugin by Roy Tanck, and was converted for use with Blogger layouts by myself. Please leave the credit links in the widget code intact. These will not be seen by the majority of your blog readers (as they will only display if JavaScript and Flash is not activated) but leaving these links intact is a great way of passing some link love on to Roy for all his hard work, and to inform other Blogger users that they can find the widget codes on this site.
Support/Issues
If you have any problems installing or using this widget, please leave your comments below or direct these to the Blogger Buster forums as Roy will be unable to provide support for installation in Blogger blogs!
Requirements
For Blogumus to display properly in your template, you will need to have Flash Player 7 or higher. You can download the latest Flash Player plugin for your browser from Adobe. I'm not sure that this installation will support special characters as tags (only Latin characters supported at present). If you do experiecce issues with labels displaying incorrectly, please let me know. I'll try to add more support, but have very little experience using Flash!
Your thoughts?
I hope that you enjoy using Blogumus in your own Blogger blogs! Please feel free to share or syndicate this page with your favorite bookmarking service if you think it is worth a mention, or subscribe to the newsfeed to learn of more great Blogger tutorials as they are posted.
Sincere Thanx to Blogger Buster

Related Articles:
How to add lebels to your post


Recent Articles:
What is Web 2.0
How to submit blogger blog sitemap to google
How to add Favicon icon in your blogger blog
10 Tips to increase traffic to your blogger blog
How to add Tags in a post in blogger template
Tips to speed up Your Computer
Blog Title’s Dilemma
How to embed comment form below Post in blogger template

Increase traffic to your blog with Feedburner

While working on my blog, I came across a webmaster tool called feedburner and Ibelieve me the tool can do wonders to your sitefeed.So firstly, I should explain you what is a Feedburner? The Feedburner is a website/web tool used by bloggers to customize their blog layout and analyze traffic coming to their blog's RSS/Atom feed.
Recently it has been acquired by Google Inc. Great news for google fans! It provides the bloggers an easy to use interface to analyze and customize their blog feeds. The tool is very important for non technical bloggers. (Those who have very little or no knowledge of XML/Blogger) Burning your feeds with feedburner does not require you to register your blog feed with google index. The USP of the tool/product is its easy to use interface and no prior knowledge of XML/HTML.It can be used with different Blogger template. As a Blogger I would suggest you to use this tool because the tool can do wonders to your blog's feed(Thus blog) like drastic increase in Page Impressions and Adsense revenue

Here is the step by step procedure to burn your blog feed with Feedburner:

Step 1:Type feedburner.google.com in your browser window. Or Go to Feedburner link from Dashboard.
Step 2:You can Sign In to the Feedburner with your google account. If you don’t have a google account first Sign Up for a feedburner account.

Step 3:Type the blog address and you are ready to use the feedburner features.
Step 4:Now Select your RSS/Atom feed.Click on RSS feed address because RSS is good for dynamic content as shown below in picture.


Here I am describing some of the features I like:

Headline Animator: After activating this feature, there has been a drastic increase in page impressions(from 0 to 1000 per month) of my blog. Do you know how much page impressions I was getting earlier. It was virtually 0.Now you must be curios to know about what a headline animator is? A headline animator is a graphics window that has been especially designed to promote your blog ’s content The feature allows you to create more than 1 headline animators. So use them wisely to promote your blog ’s content. The feature is good for increasing readers and Page impressions.

Feed count: Activating this feature lets you to count the number of readers of the blog who subscribe to your posts via E-mail/RSS feeds. It gives you the choice of directly adding this widget to your Blogger template or pasting HTML code in Blogger template.

Subscribe Via Email: Activating this feature lets the bloggers to offer subscription via E-Mail. I suggest you to use this feature.

Analyze Traffic: You can analyze traffic to your blog with the help of different Graphical reports.

Adsense: You can display adsense ads and also manage your ads from feedburner.

The above list is only few of the features of feedburner tool. You can explore a number of other features of this tool. All the features of this tool are almost self-explanatory.

I hope you will be able to burn your blog feed with feedburner. And in case face any problem s comments welcome.
Recent Articles:
What is Web 2.0
How to submit blogger blog sitemap to google
How to add Favicon icon in your blogger blog
How to add Tags in a post in blogger template
Tips to speed up Your Computer
Blog Title’s Dilemma
How to embed comment form below Post in blogger template


How to select a good title for your blog

Choosing a title for your blog is no rocket science but I tell you that it could turn out to be more complex than that. I have been blogging on Computers, technology, Software , Blogger Template,Blogging,How to blog, Web 2.0 so I wanted to have a title that could justify and be relevant to the subject of my blog. Therefore I ordered my brain to think of a title, in fact the best title. The very first title that came to my brain was Digital Lines and few others were Digital Labs, Explore IT, Digital Living, Digital Works, And Digital Webzine. I like Digital Lines and Digital Living both but there were blogs with the word digital and i don't wanted to look my blog title copied form somewhere. Now I will tell you why I chose the title Make My Blog for my blog.

Here is why:
1.What I think that for a blog the title should justify the content of your blog. The title of a blog should be descriptive enough to tell you about the content of the blog. The title Make My Blog is descriptive and relevant the content of my blog.

2.As I would be writing about How to Blog,Blogging template,Computers, Technology, Blogging, Software, Web 2.0 therefore the title Make My Blog truly justify the content. My aim is to create an aptitude for the web 2.0 Websites rather giving a how to guide or tech tips.

3.I was looking a title that is descriptive,small, easy and relevant to my blog content and I think Make My Blog is perfectly did that. Having a small title does keep your domain name shorter so that readers have to type less text in browser window. But when I was creating my blog the blog domain with this title was not available and I had chose another name (techieway) in my domain address leading my blog domain a bit longer i.e. www.techcenterplace.blogspot.com. I will have my own domain (i.e. Make My Blog) in future, I hope so.

4.And most of all I chose the title Make My Blog because I like it. I tell you that no reasons can justify a liking. In fact liking is beyond any reasons and therefore I strongly suggest you to follow your heart in case you are a bit confused about selecting a title.
Recent Articles:
What is Web 2.0
How to submit blogger blog sitemap to google
How to add Favicon icon in your blogger blog
10 Tips to increase traffic to your blogger blog
How to add Tags in a post in blogger template
Tips to speed up Your Computer
How to embed comment form below Post in blogger template


How to Add a Label to your Post in Blogger Template Blog

Labeling a post is very useful feature for Bloggers as it helps in indexing your blog post by search engines like Google and Bing. A label is a keyword (or a group of keywords) attached to a post so that It will be easier for search engines like Google to categorize your blog / post.


How to add label to a blog post:

Step 1: Go to the Template > Page Elements tab, or just click the Layout link on your Dashboard.

Step 2: Click the Edit link on the “Blog Posts” widget.

1. In the configuration window, you’ll see an option to display the labels with each post. You can change the text used for this if you like, but the most important part is to have this option checked.

2. Save your changes, and view your blog to see your labels.

In case the labels attached to your post are not displayed , either switch to a default Blogger template (i.e. Minima White) or consult the template designer.

Can I revert to my default template options? Yes, Follow the procedure below:

Step 1: Go to the Template > Edit HTML tab.

Step 2: Click the Revert widget templates to default link.

Step 3: Click OK in the confirmation message.

Step 4: Go back to the Template >Page Elements tab and check the settings again, as above.

While writing a new post you should attach labels to your post otherwise they will not be displayed even after making above changes. At the bottom of Post edit window there is a option Labels that lets you assign labels to your post.

Why do I blog

I have been blogging from the last couple of months and believe me I am enjoying it. But there are some issues that bothers my mind: Is blogging doing any good to society? Or is it just a waste of time? I do'nt think that it is a waste of time because there are so many Bloggers who not only earning from the blogging but also benefiting the society in their own ways. Also some times the question which bothers my mind! Why I am blogging. Am I blogging for fashion .Or I have got something special to write for my readers? Here is a list of reasons that i feel make me to blog.

Here they are:

It’s Free:

Most of the blogging websites do not charge anything for staring a blog like google Blogger. In fact you can earn some money from blogging by incorporating advertising programs like adsense.

Tech Savvy:

Being a Software Engineer/tech savvy guy I think that you should have presence on the web. Being a software engineer, I have got lot of technical knowledge that I wish to share with the world and nothing better than doing it on your own blog.

Original:

Do you know what requires to be a good Blogger? You should have the ability to write something original no matter how the readers are going to take it. And I think that I have in me the ability to write something fresh.

Time:

I have lot of time on my weekends and we usually waste it watching Idiot Box (TV) or doing something else. And I find the blogging an exciting way to enjoy my weekends. Blogging relaxes your mind and provide a sense of satisfaction.

Social Service:

If somebody benefits from my blog in anyway I think that as a social service. I think that we all should do some kind of social service in a field we are in. Donating money to poor is not only social service; in fact a piece of technical advice could also be a social service.

Money:

Last but not the least it gives you a chance to add some more money to your pocket. Nothing better than blogging and also earning a fair of money and which I think is very important in present days.

My Favorite Posts: 

How to add a Favicon to your blog
How to select a Title for your blog

How to display adsense ads in posts

Displaying adsense ads after post title can increase your CTR(Click through rate) as has been done in Digital Inspiration. CTR rate plays a very important role in fixing your adsense revenue. Here is the easiest procedure to display adsense ads:

Step1: Log in to your adsense account from the Dashboard and generate HTML code.
Step2: Convert this normal HTML code into a Parsed adsense code because normal HTML code can not be inserted in the xml template. There are 2 methods of parsing your adsense code.
First: Automatic parsing of code using a software/website. It can be done using AdParser or Centricle.com
Second: Do it manually as explained below:
Replace <with &lt; etc...

Step 3: After parsing, your adsense ad code should look like this:


Step 4: To Set the Alignment of your adsense ads , append adsense code as below:
<div style=”float: left; width: auto; height: auto;”>
Cut and paste your Parsed Adsense Code Here
</div>

Replace "left" with "center" or "right" for desired alignment.
Step 5: Log in to your dashboard Go to Layout> Edit HTML
Click on "Expand Widget Template" and Download your template in case you want to revert to original template.
Step 6: Adsense ads can be displayed in different locations:
1.Below post header/title
2.At the end of Post Body
1. How to display ads below Post Header/title:
-Scroll down/Find the following code line:
<div class='post-header-line-1'/>
Paste the adsense ad code(generated in step 5) below this line.
2. How To Place ads at the end of your post body:
-Scroll down/Find the following code line:
<data:post.body/>
Paste the adsense ad code(Generated in Step 5) below this line, to show your ads at the end of your post.

Here is the XML code which i have used in my XML(Minima White)template:

<div class='post-header-line-1'>
<span class='post-comment-link'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<b:if cond='data:post.allowComments'>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><b:if cond='data:post.numComments == 1'>1 <data:top.commentLabel/><b:else/><data:post.numComments/> <data:top.commentLabelPlural/></b:if></a>
</b:if>
</b:if>
</span> <span class='reaction-buttons'>
<b:if cond='data:top.showReactions'>
<table border='0' cellpadding='0' cellspacing='0' width='100%'><tr>
<td class='reactions-label-cell' nowrap='nowrap' valign='top' width='1%'>
<span class='reactions-label'>
<data:top.reactionsLabel/></span>&#160;</td>
<td><iframe allowtransparency='true' class='reactions-iframe' expr:src='data:post.reactionsUrl' frameborder='0' name='reactions' scrolling='no'/></td>
</tr></table>
</b:if>
</span> </div>

<div class='post-body entry-content'>

Paste Your Parsed Adsense code here(To wrap below Post title)

<data:post.body/>

<div style='clear: both;'/> <!-- clear for photos floats -->
</div>
<center><div>

Paste Your Parsed Adsense code here(To wrap in end of Post)
<div class='post-footer'>

Note: The procedure depicted above is in full compliance with google TCA(Terms and conditions apply) for adsense ads.
Recent Articles:
What is Web 2.0
How to submit blogger blog sitemap to google
How to add Favicon icon in your blogger blog
10 Tips to increase traffic to your blogger blog
How to add Tags in a post in blogger template
Tips to speed up Your Computer
Blog Title’s Dilemma
How to embed comment form below Post in blogger template

.

m