Translate!!

Subscribe in a reader

Showing posts with label Blogger tricks. Show all posts
Showing posts with label Blogger tricks. Show all posts

Tuesday, February 9, 2010

Easy Create A Free Sitemap For Your Website

Buzz It
submit to reddit StumbleUpon
A site map (or sitemap) is a list of pages of a web site accessible to crawlers or users. It’s very important for every webmaster to quickly submit website content to search engine . With some platforms such as wordpress, blogger, … itself has supported you create sitemap, but if you do not use wordpres or blogger, don’t worry because after reading this article you will learn how to create sitemap for your website very easy.
sitemap icon man Easy Create A Free Sitemap For Your Website
There are many ways and software to support creating a new sitemap for a website. Today, i will guide you how to create a website sitemap very effective and many webmaster have used. Using free service of xml-sitemaps.com.

Here We Go!

Go to XML-SiteMaps.Com.

Fill this form with your website information:
Starting URL: Your Website URL
Change Frequency: Time of your website update
Priority: Auto
Click to Start button and wait a minutes to processing…
After processed, it generate a list of file name. But, you just need download 4 file named: sitemap.xml, ror.xml, sitemap.html and urllist.txt.

If need, you can open sitemap.xml to edit priority (i use notepad++). Priority parameters specified the important of this url, if any Url important than another, you can set higher (highest is 1.0 and lowest is 0.10)


After that, upload 4 file to root (same directory with index.php, index.asp,…) and verify sitemap.
Wish you success!
continue reading "Easy Create A Free Sitemap For Your Website"

Thursday, February 4, 2010

SPICE UP YOUR BLOG USING BRILLIANT WAYS.

Buzz It
submit to reddit StumbleUpon
It is the dream of a blogger to make his blog beautiful.when u make or download and upload a template into ur blog u are just not doing anything creative.Customizing ur blog to make it pretty or handsome.

 
FIRST OF ALL LETS REMOVE THE BLOG BANNER {NAVBAR}
Log in to blogger

2- On your Dashboard, select Layout. This will take you to the Template tab. Click Edit HTML. Under the Edit Template section you will see you blog's HTML.
*****download full template before you do any changes to the current template of your blog******
3- paste the CSS definition in the top of the template code:


...
    <b:skin><![CDATA[/*
    -----------------------------------------------
    Blogger Template Style
    Name:     Rounders
    Designer: Douglas Bowman
    URL:      www.stopdesign.com
    Date:     27 Feb 2004
    Updated by: Blogger Team
    ----------------------------------------------- */

    #navbar-iframe {
       display: none !important;
    }
    /* Variable definitions
      ====================
       <Variable name="mainBgColor" description="Main Background Color"
                 type="color" default="#fff" value="#ffffff">
       <Variable name="mainTextColor" description="Text Color" type="color"
                 default="#333" value="#333333">
       ...


RSS FEED ICONS FOR UR BLOG 

Rss icons are provided by the feed service like feedburner itself but If u want to make them stylish.
here is a site that could herlp you to select and download rss feed icons.http://creativenerds.co.uk/freebies/ultimate-rss-feed-icon-collection-over-1500/
once downloaded go to LAYOUT ----Page elements-----add a gadget-----picture----type ur feed url and the url of your feed icon{after  hosting it with free image hosting services.}
or edit ur script provided by the feed service and put ur feed icon url instead of the original one.

ADD AN ANIMATED TAG CLOUD FOR BLOGGER

Animated tag clouds are flash objects so you need a flash player like adobe flash to see it after implementing it in your blog.
steps to implement-:-
The name of this tag cloud is blogmus.
This will spin when the mouse pointer is over the desired label of your blog.
Sign in to blogger-Layout-Edit Html and search{ctrl+f}for the following code-
<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>

Customizing Blogumus tag cloud

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. 
JAVASCRIPT MUST BE ENABLED TO SEE THIS TAG CLOUD LABEL

Coloring the default text selection with CSS

When u cleck and drag on a blog to select a default color blue or green or black appears.But sometimes thay can be really booring.Imagine a blog with Pink template having the default selection color black ohhh thats horrible isn't it.Then here is a trick which will help you to change this color.

 this post is refered from http://myfundoo-blog.blogspot.com/2010/01/coloring-default-text-selection-with.html 

In order to get this working for your blog you need to add following styles to your stylesheet.Just above your ]]></b:skin>
in edit html in layout.
Till now it works only for Firefox and safari and does not supper IE.

 ::-moz-selection{background:#5eb7c3; color:#fff;}  /* Firefox */
::selection {background:##5eb7c3; color:#fff;} /* Safari */

 And save your template.

More :
You can use it for paragraphs with different classes like csstricks.com has explained (DEMO)
p::-moz-selection{background:#1259C7; color:#fff;}
p::selection{background:#1259C7; color:#fff;}

 CREATE A SPRING EFFECT TO BLOGGER.

This is a beautiful trick which would make leaves fall from the top of your blog pages.

 



1. Demo
 copy and paste the below html code to layout-add a gadget-html/Javascript.leave the title empty and save it.
<marquee behavior="scroll" direction="down" style="position:absolute;border:0px;padding:0px;margin:0px;left:504px;top:106px;width:auto;height:463px;z-index:1;" scrollamount=""><span class="falling1"><img src="http://i38.tinypic.com/2h3r7l4.jpg" /></span></marquee><marquee behavior="scroll" direction="down" style="position:absolute;border:0px;padding:0px;margin:0px;left:348px;top:45px;width:auto;height:639px;z-index:1;" scrollamount="6"><span class="falling1"><img src="http://i38.tinypic.com/2h3r7l4.jpg" /></span></marquee><marquee behavior="scroll" direction="down" style="position:absolute;border:0px;padding:0px;margin:0px;left:685px;top:6px;width:auto;height:231px;z-index:1;" scrollamount="3"><span class="falling1"><img src="http://i38.tinypic.com/2h3r7l4.jpg" /></span></marquee><marquee behavior="scroll" direction="down" style="position:absolute;border:0px;padding:0px;margin:0px;left:138px;top:29px;width:auto;height:584px;z-index:1;" scrollamount="2"><span class="falling1"><img src="http://i38.tinypic.com/2h3r7l4.jpg" /></span></marquee><marquee behavior="scroll" direction="down" style="position:absolute;border:0px;padding:0px;margin:0px;left:847px;top:118px;width:auto;height:205px;z-index:1;" scrollamount="4"><span class="falling1"><img src="http://i38.tinypic.com/2h3r7l4.jpg" /></span></marquee><marquee behavior="scroll" direction="down" style="position:absolute;border:0px;padding:0px;margin:0px;left:890px;top:69px;width:auto;height:418px;z-index:1;" scrollamount="6"><span class="falling1"><img src="http://i38.tinypic.com/2h3r7l4.jpg" /></span></marquee><marquee behavior="scroll" direction="down" style="position:absolute;border:0px;padding:0px;margin:0px;left:2px;top:68px;width:auto;height:297px;z-index:1;" scrollamount="7"><span class="falling1"><img src="http://i38.tinypic.com/2h3r7l4.jpg" /></span></marquee><marquee behavior="scroll" direction="down" style="position:absolute;border:0px;padding:0px;margin:0px;left:701px;top:110px;width:auto;height:435px;z-index:1;" scrollamount="1"><span class="falling1"><img src="http://i38.tinypic.com/2h3r7l4.jpg" /></span></marquee><marquee behavior="scroll" direction="down" style="position:absolute;border:0px;padding:0px;margin:0px;left:229px;top:51px;width:auto;height:537px;z-index:1;" scrollamount="3"><span class="falling1"><img src="http://i38.tinypic.com/2h3r7l4.jpg" /></span></marquee><marquee behavior="scroll" direction="down" style="position:absolute;border:0px;padding:0px;margin:0px;left:833px;top:74px;width:auto;height:282px;z-index:1;" scrollamount="2"><span class="falling1"><img src="http://i38.tinypic.com/2h3r7l4.jpg" /></span></marquee><marquee behavior="scroll" direction="down" style="position:absolute;border:0px;padding:0px;margin:0px;left:771px;top:82px;width:auto;height:153px;z-index:1;" scrollamount="7"><span class="falling1"><img src="http://i38.tinypic.com/2h3r7l4.jpg" /></span></marquee><marquee behavior="scroll" direction="down" style="position:absolute;border:0px;padding:0px;margin:0px;left:859px;top:51px;width:auto;height:444px;z-index:1;" scrollamount="1"><span class="falling1"><img src="http://i38.tinypic.com/2h3r7l4.jpg" /></span></marquee><marquee behavior="scroll" direction="down" style="position:absolute;border:0px;padding:0px;margin:0px;left:554px;top:1px;width:auto;height:178px;z-index:1;" scrollamount="1"><span class="falling1"><img src="http://i38.tinypic.com/2h3r7l4.jpg" /></span></marquee><marquee behavior="scroll" direction="down" style="position:absolute;border:0px;padding:0px;margin:0px;left:169px;top:21px;width:auto;height:206px;z-index:1;" scrollamount="3"><span class="falling1"><img src="http://i38.tinypic.com/2h3r7l4.jpg" /></span></marquee><marquee behavior="scroll" direction="down" style="position:absolute;border:0px;padding:0px;margin:0px;left:786px;top:25px;width:auto;height:142px;z-index:1;" scrollamount="4"><span class="falling1"><img src="http://i38.tinypic.com/2h3r7l4.jpg" /></span></marquee><marquee behavior="scroll" direction="down" style="position:absolute;border:0px;padding:0px;margin:0px;left:775px;top:74px;width:auto;height:771px;z-index:1;" scrollamount="1"><span class="falling1"><img src="http://i38.tinypic.com/2h3r7l4.jpg" /></span></marquee><marquee behavior="scroll" direction="down" style="position:absolute;border:0px;padding:0px;margin:0px;left:450px;top:38px;width:auto;height:418px;z-index:1;" scrollamount="6"><span class="falling1"><img src="http://i38.tinypic.com/2h3r7l4.jpg" /></span></marquee><marquee behavior="scroll" direction="down" style="position:absolute;border:0px;padding:0px;margin:0px;left:250px;top:92px;width:auto;height:775px;z-index:1;" scrollamount="4"><span class="falling1"><img src="http://i38.tinypic.com/2h3r7l4.jpg" /></span></marquee><marquee behavior="scroll" direction="down" style="position:absolute;border:0px;padding:0px;margin:0px;left:173px;top:19px;width:auto;height:389px;z-index:1;" scrollamount="3"><span class="falling1"><img src="http://i38.tinypic.com/2h3r7l4.jpg" /></span></marquee><marquee behavior="scroll" direction="down" style="position:absolute;border:0px;padding:0px;margin:0px;left:804px;top:49px;width:auto;height:493px;z-index:1;" scrollamount="7"><span class="falling1"><img src="http://i38.tinypic.com/2h3r7l4.jpg" /></span></marquee><marquee behavior="scroll" direction="down" style="position:absolute;border:0px;padding:0px;margin:0px;left:543px;top:72px;width:auto;height:397px;z-index:1;" scrollamount="2"><span class="falling1"><img src="http://i38.tinypic.com/2h3r7l4.jpg" /></span></marquee><a style="color: #000080; font-family: tahoma; font-size: 11px; text-decoration: none; border: 1px double #00ADEF; padding: 1px; background: #FFF"</a>

Changing the background image of your blogger

A blogger template comes packed with a background image like this one 

Well there is a way to change it.

Step one sign in to blogger.

step two go to layout and then click edit html.

step three select expand widget templates.

 step four look for this code:-

body {
margin : 0;
font : 13px tahoma, arial, helvetica, sans-serif;
background : transparent url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8PDeXehHCbN2iQhz-brJEJHIKrp6dbR_63TRDW4dyoLGRunbSJO7qrUbB-zUImESz_zUfT_if-JJkmJiCC3JH1g9q0wf_Vgk1P2sOTyZUUe1gSrA_zhU72BnBhHwuhhoV-n8u3Fe4K2rS/s1600/backgroundbody.png) repeat scroll 0 0;
}

With emphasis on body tag

 Step:4 Replace https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8PDeXehHCbN2iQhz-brJEJHIKrp6dbR_63TRDW4dyoLGRunbSJO7qrUbB-zUImESz_zUfT_if-JJkmJiCC3JH1g9q0wf_Vgk1P2sOTyZUUe1gSrA_zhU72BnBhHwuhhoV-n8u3Fe4K2rS/s1600/backgroundbody.png  with Your Image.
It might be possible that your template doesn't have a background image and u want to add on.
just paste this between body closing and ending tags { and }

background : transparent url(http://i38.tinypic.com/2q07m2e.jpg) repeat scroll 0 0;

Replace http://i38.tinypic.com/2q07m2e.jpg with Your Image url.

Step:5 Click Save Template.

And Your are done!!click view blog to preview your blog.
ALWAYS BACKUP YOUR TEMPLATE BEFORE DOING THIS.

 Add an Email Subscribe Button Below Every Blog Posts 

 An email subscribe button helps your readers subscribe to your blog feeds.Well,Here is a way to add it to every post in ur blog.

***Copy the below code and paste it in notepad as you have to make some changes in it replace the red part in the code with your own feedburner  address.

<br /><div style="border: 1px solid rgb(153, 153, 153); padding: 5px;">
<br /><img src="http://i263.photobucket.com/albums/ii150/mohamedrias/subscriberss.gif" align="left" border="0" height="18" width="44" />
<span style=";font-family:verdana;font-size:85%;"  >
If you enjoyed this post, make sure you
<a target="_blank" href="http://feedburner.google.com/fb/a/mailverify?uri=Brilliantcomputing">
<b>subscribe to my regular Email Updates</b></a></span>!
<br /><a href="http://brilliantcomputing.blogspot.com">
<br /><img src="http://img1.orkut.com/img/castro/i_tool.png" align="right" border="0" width="14" height="14">
</a></div>
***Go to  layout - edit HTML-Tick expand widget template and search for
 <p><data:post.body/></p>;   or    <data:post.body/>
 .And paste the copied code beneath <p><data:post.body/></p>;   or    <data:post.body/>

SAVE TEMPLATE AND U ARE DONE.

A COMFORTABLE MENU FOR YOUR BLOGGER

 use our free css menu builder and create some pretty sweet menus for free Using free CSS menu buider

features:

  1.  30+ horizontal menus 
  2. 700+ vertical menus combinations 
  3. Breadcrumb menus that consist of more than 200+ combinations
  4. In total the site offers more than 1000 menu combinations
  5. Not including the endless color combinations.
This is what they say but as far as i think it has:

  • A good and easy to use GUI.
  • An easy color chart to pick from
  • Mouthful of design which surely make your pick difficult.
  • More over it is free,what else u want MAN

Below is centain Screenshots Which i take while trying for  my menubar























Add a Gtalk live chat button to your blog.

There are many services in the web which helps u put diffrent widgets and apps which help a blog visitor to email,comment or give feedbacks.Now there is another widget from google talk which allows a visitor to directly talk or chat to the administrator of a blog.

 What U need in order to create one for your blog?
U need to be an Gtalk user.
If you're not a current Google Talk user, you'll need to create a new Google Account. If you have Gmail on your Google Account, you can use Google Talk with your Gmail account.


Click below to get one:
to create  read the below details and visit : gtalk badge



Title: Text appearing in blue.
Your nickname:  Name Displayed to guest.
Style :click on the drop down list to select to select from 6 options.


Click Update badge

Copy the HTML code From below And paste in your gadget list 

and arrange it in order. 



Animated jquery sharing bar with 360 revolution

 Sharing is caring.Sharing posts and other topics plays an important role in a blogs popularity.There are many share icons but this is animated and beautiful.








 Copy this CSS code and paste it above  ]]> in your template code ,no need to expand widget template.
 #share{
 /* The share box container */
 width:500px;
 background:#ececec;
 height:220px;
 margin:60px auto;
 overflow:hidden;

 -moz-border-radius:12px;
 -webkit-border-radius:12px;
 border-radius:12px;
}

#share-label{
 /* The image on the right */
 background:url(img/share.png) no-repeat 50% 50%;
 float:left;
 height:220px;
 width:200px;
}

#stage{
 /* This is where the animation takes place */
 position:relative;

 border-right:1px solid #DDDDDD;
 width:290px;
 height:220px;
 background:white;
 float:left;

 border-bottom-left-radius:12px;
 border-top-left-radius:12px;

 -moz-border-radius-bottomleft:12px;
 -moz-border-radius-topleft:12px;

 -webkit-border-bottom-left-radius:12px;
 -webkit-border-top-left-radius:12px;
}

.btn{
 /* This class is assigned to every share button */
 background-color:white;
 height:90px;
 left:0;
 top:0;
 width:60px;
 position:relative;
 margin:20px 0 0 10px;
 float:left;
}

.bcontent{
 /* Positioned inside the .btn container */
 position:absolute;
 top:auto;
 bottom:20px;
 left:0;
}
/* Individual rules for every share button */

.digg{ background:url(img/digg_reflection.png) no-repeat -4px bottom;}
.reddit{ background:url(img/reddit_reflection.png) no-repeat -4px bottom;}
.facebook{ background:url(img/facebook_reflection.png) no-repeat bottom center;}
.tweetmeme{ background:url(img/twit_reflection.png) no-repeat -5px bottom;}
.dzone{ background:url(img/dzone_reflection.png) no-repeat -7px bottom;}

.thanksto{
 position:absolute;
 bottom:2px;
 right:4px;
 font-size:10px;
}

.thanksto a,.thanksto a:visited{
 color:#BBB;
}

/* Customizing the facebook share button */

span.fb_share_no_count {
 display:block;
}

span.fb_share_count_top.fb_share_no_count {
 line-height:54px;
}

span.fb_share_count_nub_top.fb_share_no_count{
 display:none;
}

span.fb_share_no_count span.fb_share_count_inner {
 background:#3B5998 url(http://static.fbshare.me/f_only.png) no-repeat scroll 20px 5px;
 display:block;
}
 For get this working we need to install these two JavaScript between head sections :

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ikb.fileave.com/rotating%20social.js"></script>


First one includes jquery library from google's CDN and the second one is rotating social file.

To show the code below every post paste this HTML code below <data:post.body/>

 <div id="share">
<div id="stage">

<div class="btn digg"><div class="bcontent"><a class="DiggThisButton"></a><script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div></div>
<div class="btn tweetmeme"><div class="bcontent"><script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div></div>
<div class="btn dzone"><div class="bcontent"><script language="javascript" src="http://widgets.dzone.com/links/widgets/zoneit.js"></script></div></div>
<div class="btn reddit"><div class="bcontent"><script type="text/javascript" src="http://www.reddit.com/button.js?t=2"></script></div></div>
<div class="btn facebook"><div class="bcontent"><a name="fb_share" type="box_count" href="http://www.facebook.com/sharer.php">Share</a><script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script></div></div>

</div>

<div id="share-label">
<!-- This is where the share some love image appears -->
</div>

</div>
And save ur template.
continue reading "SPICE UP YOUR BLOG USING BRILLIANT WAYS."

Tuesday, February 2, 2010

Make your blog popular using Brilliant ways

Buzz It
submit to reddit StumbleUpon
Every blogger's aim is to make their blog popular.Well here are some cool steps to make it popular.It is up to the owner to catch the interest of the visitors of a blog so that they visits it again.


*Posting Good Materials
posting good topics that enrich others plays a vital role in getting visitors to your blog.Then Give an appropriate name to it.Add some pictures related to it.
*A Wise name for your blog
Giving a name that related to the theme or the topics that are going to be posted in a blog is good.eg:-BRILLIANT COMPUTING the theme of this blog is computer internet tricks tips softwares hardware and lots more.
*Submit your site to search engines
Submitting your site to different search engines can help your blog in appearing in search results.
Google webmaster tools can help you a lot in this.Using seo tools can be helpful too.
A list of search engines
 There are many search engine submission services out there and this is a good list.

 When u r added to these search engine indexes ur blog will appear in search results.
eg:-in webmaster tools when u submit the url of ur blog.They will give u a meta or html tag.Copy and paste it in your blog template.And u are done with it.Type ur blog url in google search to check whether your site has been added to their index.
*Install Google Analytics to your blog 
Install Google Analytics to your blog and get detailed analysis report of your traffic. There are many things in Google Analytics to help you for getting traffic. You may also find there that what keywords are sending visitors to your blog. To install Google Analytics script to your blog you just need a Google account. If you don't have you can create one.
 *Submit your blog to blog directories
Submit your blog to some good blog directories of high PR. It will increase link to your blog. So pay some attention to link building. Here you may find a very good list of blog directories.
*Give value to your visitors
Reply to their comments and questions clearly.
*Be active in forums
Forums are a best way to promote ur blog.Actively participate in forums and try to promote your blog links and feeds.
FORUMS
Join bloggerforum.com
  join digital point forum.
 Join Bloggeries forum.
Join v7n.forum

or google for many other forums.
*Put a RSS subscribe feed button to your blog
Add a gadget to subscribe your blog via RSS. You can start this service by feedblitz, feedburner etc.
Email subscription box can help.
*Try Mobilizing ur blog
go to www.mippin.com to mobilize your blog for free and put your mobile blog link in your blog.
 *Go for Link exchange
Go for Link exchange with other bloggers or site owners and get ur blog link in as many sites as possible.
continue reading "Make your blog popular using Brilliant ways"

Wednesday, January 27, 2010

Best blogger templates

Buzz It
submit to reddit StumbleUpon
Hello friends, I am back with some of the best templates .I am sorry as i did t post anything related to blogging and blogger.Hope you like this .  So it was lot of work choosing the templates. I have selected 20 of the best templates. .Dont  forget to comment






Christmas V1.0
Template by BloggerThemes for ChethStudios
Features: 2 Columns, Adapted from Wordpress, Fixed width, Red, Right sidebar, White



best blogger templates-Christmas V1.0

Christmas V2.0
Template by BloggerThemes for ChethStudios
Features: 2 Columns, Adapted from Wordpress, Brown, Fixed width, Premium, Right sidebar, White


best blogger templates-Christmas V2.0

Black Rock
Template by ThemeCraft
Features: 2 Columns, Adapted from Wordpress, Black, Fixed width, Right sidebar

best blogger templates-Black Rock

Mystique
Template by ThemeCraft
Features: 2 Columns, Adapted from Wordpress, Black, Elegant, Fixed width, Premium, Right sidebar

best blogger templates-Mystique

Garden
Template by Teknomobi
Features: 2 Columns, Blue, Fixed width, Green, Left sidebar, White

best blogger templates-Garden

Granite
Template by Templates Block
Features: 2 Columns, Adapted from Wordpress, Fixed width, Gray, Right sidebar, Rounded corners

best blogger templates-Granite

Astra
Template by ThemeCraft
Features: 2 Columns, Adapted from Wordpress, Black, Fixed width, Right sidebar


best blogger templates-Astra

WP Boxed Tech
Template by Free Blogger Template
Features: 3 Columns, Adapted from Wordpress, Fixed width, Magazine, Minimalist, Right sidebar


best blogger templates-WP Boxed Tech

Dark Orange
Template by Bloggets
Features: 2 Columns, Black, Fixed width, Magazine, Orange, Right sidebar



best blogger templates-Dark Orange

Maxis
Template by BloggerThemes
Features: 2 Columns, Fixed width, Minimalist, Right sidebar


best blogger templates-Maxis

Save Green
Template by BloggerThemes
Features: 2 Columns, Adapted from Wordpress, Fixed width, Orange, Right sidebar


best blogger templates-Save Green

Drawing Time 
Template by Deluxe Templates
Features: 2 Columns, Adapted from Wordpress, Blue, Fixed width, Right sidebar



best blogger templates-Drawing Time

New York
Template by Dhampire
Features: 2 Columns, Adapted from Wordpress, Blue, Fixed width, Left sidebar


best blogger templates-New York

Bloggerpress
Template by Insight your Blogger
Features: 3 Columns, Brown, Elegant, Fixed width, Right sidebar, Rounded corners


best blogger templates-Bloggerpress

Glassical
Template by ChethStudios
Features: 2 Columns, Adapted from Wordpress, Blue, Fixed width, Minimalist, Right sidebar


best blogger templates-Glassical

Hybrid Gallery
Template by Insight your Blogger
Features: 3 Columns, Elegant, Fixed width, Gray, Left sidebar, Photolog, Rounded corners


best blogger templates-Hybrid Gallery

Rainbow
Template by ThemeCraft
Features: 2 Columns, Adapted from Wordpress, Fixed width, Right sidebar


best blogger templates-Rainbow

sGallery
Template by Anshul
Features: 3 Columns, Adapted from Wordpress, Brown, Fixed width, Photolog, Right sidebar, Rounded corners


best blogger templates-sGallery

My Showcase
Template by BloggerThemes
Features: 4 Columns, Blue, Fixed width, Photolog, Right sidebar


best blogger templates-My Showcase

Blues
Template by BloggerThemes
Features: 2 Columns, Adapted from Wordpress, Blue, Fixed width, Right sidebar, White


best blogger templates-Blues
continue reading "Best blogger templates"

Sunday, January 24, 2010

Add Yahoo Messenger Online Status to Your Blog

Buzz It
submit to reddit StumbleUpon

Add Yahoo Messenger Online Status to Your Blog

You have a Yahoo Messenger ID, and you wish to add you YM ID status to your blog (add yahoo Messenger for the web). You can create you Yahoo Messenger status use animation picture and can be installed easily in your blog. For example, you can use following picture to present online status your YM ID in your blog.
yahoo-online-status-1 yahoo-online-status-2 yahoo-online-status-3
yahoo-online-status-4indicator-11-onlineindicator-17-offline
Follow this steps to create yahoo messenger status
create-yahoo-messenger-status
  1. Open http://www.freecustomize.com and select onf of the picture in this website (available more than 20 picture)
  2. Type your Yaho Messenger ID without @yahoo.com then click “Generate button”
  3. Copy generated code and add to your blog.
How to add the generated code to your blog ? Follow this tutorial.
Add yahoo Messenger Online status to wordpress
In this tutorial I using wordpress themes with widget ready, if your themes no widget ready you must added the code manually.
  1. Login to your WordPress blog
  2. Select Appearance, then click widget
  3. Add new text widget, then click edit.
  4. Copy the generated code. Click Save. Open your blog or reload your blog to view online status widget in your blog.
Add yahoo Messenger Online status to Blogspot
  1. Login to your blogspot. Click layout at blog to be installed YM status.
  2. Click add new gadget, select html/javascript .
  3. Copy generated code and save 
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. Update: SORRY!!!! BUT freecustomize website is not running now.
continue reading "Add Yahoo Messenger Online Status to Your Blog"
Next home

RECENT COMMENTS

Grab This Widget

Random posts

 

Powered by FeedBurner

Subscribe to updates
Blog-Watch - The Blog Directory
Computers blogs
googlef97e20b47bd40d74.html
The Link Exchange - Your ultimate resource for link exchange!
Technology Blogs - Blog Rankings
Computers Blogs
GoLedy.com
Blog Directory
Technology Blogs - Blog Rankings
Blog Directory
Blog Directory
Listed in LS Blogs the Blog Directory and Blog Search Engine

I'm in

I'm in
Reddit [Mithun Mohan]

Follow me in twitter

Follow me in twitter
[Brilliant Computing]

See me in Delicious

See me in Delicious
Mithun Mohan

Find me in stumble upon

Find me in stumble upon
[Mithun Mohan]

Lets become friends in digg

Lets become friends in digg
[Brilliant Computing]

The Brilliant Computing community in Orkut

VISITORS

   
MyFreeCopyright.com Registered & Protected

TERMS AND CONDITIONS

Dear Visitors...
This blog does not contain uploaded files on the server but only provides direct links to download files.Navigate the links provided at your own risk.If any problem occurs like broken link or something or virus then you can contact me via 'Contact Me' found on top of this blog so that I can change the link.Dont hesitate to comment.If Any request or suggestions plz contact me.
DO THE HACKS POSTED HERE AT YOUR OWN RISK.
Thankyou for visiting my blog............enjoy

Protected by Copyscape Plagiarism Detector
function rtclickcheck(keyp){ if (navigator.appName == "Netscape" && keyp.which == 3){ alert(message); return false; } if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) { alert(message); return false; } } document.onmousedown = rtclickcheck;

Brilliant Computing Copyright © 2009 Brilliant Computing is Designed by Ipietoon Sponsored by Online Business Journal

Creative Commons License
Brilliant computing by Mithun is licensed under a Creative Commons Attribution-Noncommercial 2.5 India License.