Want to Become a Guest Writer For this BLOG ?

if you are interested in writing for this blog, just contact me @ thebloggerclassroom@gmail.com

Requirements :-

► Only Upto 2-3 Backlinks per post .
► Need Not be An Expert in English,But Should be Fluent and Avoid Spelling/Grammatical errors. editing will be done by me .
 ► Should have Some experience like writing for your own blog/articles around the net .

Please Contact ASAP

Give Feedbacks and Help Us Grow .

Now Coming to the fact that i blog and get some visitors reading my posts, i'm confused a lot on whether the readers like my blog or do i need to improve . please help me improve . just comment now :D

Check Whether Your Website has been Sandboxed by google .

you can check whether your site is sandboxed by google or not. it also shows the indexed pages by google.




Check domain:


http://



(eg. www.google.com)

Powered by iWEBTOOL

Check Your Site's Backlinks .

check your backlinks using this unique seo tool . entering www. shows a difference in the number of back-links




Your domain:






(eg. thebloggerclassroom.blogspot.com)





Powered by iWEBTOOL

The Blogger Classroom Pride !

| 0 comments

wow, just 4 posts into the blogger classroom and  all the four topics got enrolled in www.alltop.com

this site gathers all post around the internet and only shows the best unique content. glad that the blogger class room has made into the top posts in the blogging section!

if you actually knew blogging is the #2 nd most competitive keyword after marketing.

see the screenshot :-


A honest blogger !

it's really difficult these days to find some honest bloggers around the internet. i actually thought of writing about a blog and give him a spotlight as well because what he did is post a article on changing  favicon for blogger  and he back-linked to me instead off  copying the content. thanks .
information :-

blog :- blah-blahblog.blogspot.com 

Author :-  rick Barron  


her's a pic from the blog :-


How to add a cool Random post Button For your Blogger Blog

create a random post link so that when visitors click on it they can read a random post instead of reading the posts in the order of submission , so what you have to do ?

  • As usual, go to layout Form your Dashboard.
  • click on the page elements tab and click Add gadget .
  • Add a HTML/Javascript  widget.
  • then name the widget like " random posts"
  • then paste the following code in the body .
  • <div id="myLuckyPost"></div> <script type="text/javascript"> function showLucky(root){ var feed = root.feed; var entries = feed.entry || []; var entry = feed.entry[0]; for (var j = 0; j < entry.link.length; ++j){if (entry.link[j].rel == 'alternate'){window.location  = entry.link[j].href;}}} function fetchLuck(luck){ script = document.createElement('script'); script.src = '/feeds/posts/summary?start-index='+luck+'&max-results=1&alt=json-in-script&callback=showLucky'; script.type = 'text/javascript'; document.getElementsByTagName('head')[0].appendChild(script); } function feelingLucky(root){ var feed = root.feed; var total = parseInt(feed.openSearch$totalResults.$t,10); var luckyNumber = Math.floor(Math.random()*total);luckyNumber++; a = document.createElement('a'); a.href = '#random'; a.rel = luckyNumber; a.onclick = function(){fetchLuck(this.rel);}; a.innerHTML = 'View Random Post'; document.getElementById('myLuckyPost').appendChild(a); } </script> <script src="/feeds/posts/summary?max-results=0&alt=json-in-script&callback=feelingLucky"></script>
  • save and view your blog.
  • the random posta widget will appear where you have placed it.
  • by default, the text displayed is " view random posts " . to change it just go to EDIT HTML and then search for the text and edit it as you wish.
  • nice tool to increase your pageviews.

Create a Tag cloud for your blog.

Create a Tag Cloud for your blog so that your visitors can easily navigate through your pages and as a result increase your page views.

a tag cloud will look like this when you will successfully install the widget.






so let's continue with the procedure :-
  1. Go to the Layout page of the blog you want to have the tag cloud in .
  2. under the page elements , add a pre-functioning gadget called 'labels' .
  3. save the elements
  4. Goto Edit HTML page , click on the expand widgets and make sure you back-up your template before you edit the code.

  5. search for <b:widget id='Label1' locked='false' title='Tags' type='Label'/>

  6. the code may not be same for all the templates, instead try searching for categories or label11 untill  you find the code.
  7. Replace the existing code with the following code:-


  8. /*


    Distributed by John Smith at WidgetsForFree.blogspot.com


    */ <b:widget id='Label1' locked='false' title='Tags' type='Label'>


    <b:includable id='main'>


    <b:if cond='data:title'>


    <h2><data:title/></h2>


    </b:if>


    <div class='widget-content' style='text-align: justify;'>


    <script type='text/javascript'>


    /*


    Simple Blogger Tag Cloud Widget


    by Raymond May Jr.


    http://www.compender.com


    Released to the Public Domain


    */



    //Settings / Variables


    var max = 150; //max css size (in percent)


    var min = 70; //min css size (in percent)


    var showCount = false;  // show counts? true for yes, false for no


    var minCount = 1;  // what is the minimum count for a tag to be shown? 1 for all




    //Begin code:


    var range = max - min;



    //Build label Array


    var labels = new Array();


    <b:loop values='data:labels' var='label'>


    labels.push(&quot;<data:label.name/>&quot;);


    </b:loop>



    //URLs


    var urls = new Array();


    <b:loop values='data:labels' var='label'>


    urls.push(&quot;<data:label.url/>&quot;);


    </b:loop>



    //Counts


    var counts = new Array();


    <b:loop values='data:labels' var='label'>


    counts.push(&quot;<data:label.count/>&quot;);


    </b:loop>



    //Number sort funtion (high to low)


    function sortNumber(a, b)


    {


    return b - a;


    }



    //Make an independant copy of counts for sorting


    var sorted = counts.slice();



    //Find the largest tag count


    var most = sorted.sort(sortNumber)[0];



    //Begin HTML output


    for (x in labels)


    {


    if(x != &quot;peek&quot; &amp;&amp; x != &quot;forEach&quot; &amp;&amp; counts[x] >= minCount)


    {


    //Calculate textSize


    var textSize = min + Math.floor((counts[x]/most) * range);


    //Show counts?


    if(showCount)


    {


    var count = &quot;(&quot; + counts[x] + &quot;)&quot;;


    }else{


    var count = &quot;&quot;;


    }


    //Output


    document.write(&quot;<span style='font-size:&quot; + textSize + &quot;%'><a href='&quot; + urls[x] + &quot;' style='text-decoration:none;'>&quot; + labels[x] + count + &quot;</a></span> &quot; );


    }


    }


    </script>


    <br/>


    <span style="font-size:80%;float:right;">Powered by <a href="http://www.widgetsforfree.blogspot.com">Blogger Widgets</a></span>


    </div>


    </b:includable>


    </b:widget>

     
  9. save the template and you should see the tag cloud in your blog,if installed properly.

    Hope you liked it :) 



How to Change the Favicon of your blog ( blogger )

| 0 comments

Tired of seeing the very old and very common  "B" in your address bar? why not change it and make it look funky or creative?

if you don't know whats a favicon , Favicon is a small 16 * 16 pixel image which is displayed in the address bar generally left to the address .. here's a look at it .


this is the favicon of google updated recently.


If you are actually using blogger you get this big orange "B" every time unless a webmaster changes it . you can also change this and make your favicon look funny and creative.

here the way to do it :-

  1. Log in to your blogger account and click on the layout button on the Dashboard for the blog you want to change the favicon.
  2. goto Layout tab and then click on the Edit HTML .
  3. be sure to save your template so that you don't screw your template in case anything goes wrong.

  4. search for the code  </head> using the browser's in-built text search . press ctrl + F for opera and firefox.

  5. paste this code immediately after the tag 



  6. <link href='http://bsaves.com/HowHero/Blogger%20Templates/moonspot/images/favicon.ico' rel='shortcut icon' type='image/vnd.microsoft.icon' />
    <link href='http://bsaves.com/HowHero/Blogger%20Templates/moonspot/images/favicon.ico' rel='icon'/>



  7. save your template and now it's time to create your own favicon
  8. visit this site to generate your own favicon 
  9. after generating your own favicon, download it and host it .
  10. you can use host any image to host your .ico files
  11. copy the URL  of the the uploaded favicon .
  12. search for this URL in your template



  13. http://bsaves.com/HowHero/Blogger%20Templates/moonspot/images/favicon.ico



  14. and replace it with your uploaded URL .
  15. note: if you notice you have to change the default URL two times. and save the template.
That's it , your favorite favicon is viewed by all who visit your blog and no more boring B's


Blogger Vs Wordpress

Many people ask me what's the main difference between Blogger and Wordpress . the concept is so long that i just cant give a single point and say this one is better. for those people, this post could well give the answer .
so, it's time to deeply analyze the two platforms and asses them for their advantages and disadvantages:-

so, lets use Wordpress as WP and Blogger as B . an advantage is colored in Green and disadvantage in Red

1.Installing a blog :-  both blogger and wordpress are quite easy to host or install. it's just an export function for blogger . however hosting companies have come up with this Fantastico script which makes WP hosting so easy and hassle free . where as coming to the free versions , it's just 10 minutes of work for both the platforms to establish a blog and start working on it.

resultWP , B .

2. Advantages of free versions :- blogger is the best free version blogging platform . why do i say it? because it can be installed in just a min or two  and you can get access to all parts of your blog could it be the CSS , widgets or adding Ads to your blog . whereas WP doesn't allow the template to be edited, doesn't allow users to add any 3rd party Javascript/HTML scripts to be added.

result :- WP , B

3. Time to get indexed :- it was noted that Blogger had a greater advantage because Google owns Blogger and it has all the blogs in it's database.create a blogger site and leave it for a week and you'll notice that Google has indexed that page.  however, WP users have to make efforts in making their site visible to google and then get it  indexed.

result :- WP,B

4. Categories/labels :- both are nothing but the same . WP calls them as Categories , Blogger calls them Labels. However categories is said to add to the aesthetic sense of SEO ( searh engine omptimization). it's just that categories has a positive effect where as labels has a nuetral effect on SEO. blogger shouldn't be given red , but when compared WP is better.

result : WP,B

5. Templates :- as you know blogger has tens of thousands of free templates , so does wordpress . as i already said adding templates to WP is only possible in self hosted blogs. so i can't really differentiate  the advantages and disadvantages . both get Green .however WP has A few templates which make the blog look just wonderful

result :- WP, B

6. Plug-ins: no need to say, WP is the king when it comes to plug-ins . you can literally  find thousands of plug-ins which can make life easier where as blogger falls behind as it needs extra bit of coding when it comes to plug-ins.

result :- WP,B

7. Built-in statistics :- WP has a built in code to show the visitor statistics of two days. blogger doesn't have  a built in code but 3rd party codes can be added like Google Analytics , Statcounter and so.

result : WP, B

8. SEO :-  Wordpress is a little ahead at this time in SEO and blogger is a little behind . however a large depends on the action of blogger .

result :- WP, B

9. Flexibility :- a self hosted WP blog is better than self hosted Blogger .WP provides and satisfies all the aspects a webmaster would love to . it can be edited to an extent that you can even screw your blog and you wouldn't know what you just did.

result :- WP, B

Summary :- blogger is more like a fun way of blogging where webmasters can post their ideas online without any hassels,whereas WP is more like a professional Blogging Platform .hope you like the post .

did i overlook any concept? just post them in the comments.i'll try to edit it later on :)


Advantages of blogging with blogger | blogspot.com |

in this article i am going to explain the benefits of blogging with blogger. if you actually knew blogger is a free platform owned by Google and allows people to create their personal pages also known as blog.i know you knew that :p . now talking about advantages , the best thing about blogger or blogspot is nothing but it's free. you can create as many blogs as you wish and it's all damn free.so why not visit blogger and create a blog for yourself huh? ( mind you only after reading this article :) ) blogger comes with a sub-domain like nay other free blogging sites . example : thebloggerclassroom.blogspot.com . obviously, you can move your blog to your own domain .

okay let's categorize the advantages of blogger :-

  • it's free 
  • it's user friendly , anyone with basic knowledge can create a blog and continue blogging.
  • easy interface with simple add-on features making it more fun.
  • fast to set-up , takes a minute or two to set-up a new blog.
  • owned by a major company ( Google ), so good ranking in the search engine and other nice features like google analytics, webmasters and picasa ( picture sharing site ) with 1 gb storage . 
  • no bandwidth issues , pictures and videos can be played anytime . 100 % uptime guarenteed
  • easy to monetize your blog using adsense or any other 3-rd party advertising companies.
  • easy to add tabs and widgets at any part of the template.
  • can be exported to your own domain for example : yourdomain.com
  • supports mobile blogging and e-mail blogging.
  • templates can be easily tweaked with full access to CSS,XML and HTML. has the function of saving and uploading templates in case something goes wrong.However some knowledge on HTML and CSS is needed .

Introduction : Me and my Blog.

hi guys , thanks for visiting my blog.i am 18 years old and a very potential blogger, i think I'm boasting myself  :) as the name suggests this blog mainly concentrates on blogging and mainly blogging in blogger. so what can you find in this blog? you can find in-depth tutorials of blogger and possibly some tricks and also good templates as time passes by. blogger has been a fun platform for me with all kinds of widgets and mainly having the CSS in my very own hands.

why did i chose this niche ? after two years of in-depth learning, i thought it was time to put all my learning into a blog and let others learn. hopefully you would learn something from here and if you wish to be a co-author or a contributor , please e-mail me @ thebloggerclassroom@gmail.com . hope i get a few mails.

enjoy your stay and please comment

Promote blog