Sunday, 9 December 2012

How To Get Sexy Social Sharing Tools

         How To Get Sexy Social Sharing Tools
1.Go To Blogger.com
2.Login To your Account
3.Add A Gadjet
4.Slect Java Script
5.Copy The Given Codes Below
6.Paste It Now on java script
7. Now Save Toyr Seting And See 

Privew

Share:





Here IS Cod

<!--sharexy code start--><noindex><div id='shr_613879'><script type='text/javascript'>(function(w) { if (!w.SharexyWidget) { w.SharexyWidget = {};} if (!w.SharexyWidget.Params) { w.SharexyWidget.Params = {}; } w.SharexyWidget.Params['613879'] = {'code_id':'613879','publisher_key':'YQV-03168','design':'sharexy','layout_static':'h','type':'stf','mode_float':'l','size_float':'60','size_static':'32','buzz':'0','services':['facebook', 'twitter', 'stumbleupon', 'linkedin'],'url':'current','allways_show_ads':'1','show_ads_sharing':'0','show_ads_cursor':'0','bg_float':'0','bg_color':'#f1f1f1','labels':'0','counters':'0', 'counters_float':'0'} })(window);</script><script type='text/javascript' src='http://shuttle.sharexy.com/Loader.js'></script></div></noindex><!--sharexy code end -->

Friday, 7 December 2012

make a snow effect on the mouse cursor on the blog

Hi! guys`how are you? here is the cool simple snow effect to your blog mouse cursor area. many snow effects gadget use images to this. but this gadget do not use images to this. so this is very fast. i've tested this effect on internet explorer, mozzilla firefox & many other web browsers. this simple non-image based widget works just fine!! I hope you enjoy using this very cool snow effect gadget.
 
 
 
So, let's see how to install this cool widget in your blog..

STEP #1
Log in to Blogger, go to Design ->






Add a Gadget of HTML/JavaScript type.


a href="http://24work.blogspot.com" target="_blank" title="Blogger Widgets"><img src="http://safir85.ucoz.com/24work-blogspot/cursor-24work-10.png" border="0" alt="Blogger Widgets" style="position:absolute; top: 0px; right: 0px;" /></a><script type="text/javascript">

// <![CDATA[

var colour="black";

var sparkles=100;



var x=ox=400;

var y=oy=300;

var swide=800;

var shigh=600;

var sleft=sdown=0;

var tiny=new Array();

var star=new Array();

var starv=new Array();

var starx=new Array();

var stary=new Array();

var tinyx=new Array();

var tinyy=new Array();

var tinyv=new Array();

window.onload=function() { if (document.getElementById) {

var i, rats, rlef, rdow;

for (var i=0; i<sparkles; i++) {

var rats=createDiv(3, 3);

rats.style.visibility="hidden";

document.body.appendChild(tiny[i]=rats);

starv[i]=0;

tinyv[i]=0;

var rats=createDiv(5, 5);

rats.style.backgroundColor="transparent";

rats.style.visibility="hidden";

var rlef=createDiv(1, 5);

var rdow=createDiv(5, 1);

rats.appendChild(rlef);

rats.appendChild(rdow);

rlef.style.top="3px";

rlef.style.left="0px";

rdow.style.top="0px";

rdow.style.left="3px";

document.body.appendChild(star[i]=rats);

}

set_width();

sparkle();

}}

function sparkle() {

var c;

if (x!=ox || y!=oy) {

ox=x;

oy=y;

for (c=0; c<sparkles; c++) if (!starv[c]) {

star[c].style.left=(starx[c]=x)+"px";



star[c].style.top=(stary[c]=y)+"px";

star[c].style.clip="rect(0px, 5px, 5px, 0px)";

star[c].style.visibility="visible";

starv[c]=50;

break;

}

}

for (c=0; c<sparkles; c++) {

if (starv[c]) update_star(c);

if (tinyv[c]) update_tiny(c);

}

setTimeout("sparkle()", 40);

}

function update_star(i) {

if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";

if (starv[i]) {

stary[i]+=1+Math.random()*3;

if (stary[i]<shigh+sdown) {

star[i].style.top=stary[i]+"px";

starx[i]+=(i%5-2)/5;

star[i].style.left=starx[i]+"px";

}

else {

star[i].style.visibility="hidden";

starv[i]=0;

return;

}



}

else {

tinyv[i]=50;

tiny[i].style.top=(tinyy[i]=stary[i])+"px";

tiny[i].style.left=(tinyx[i]=starx[i])+"px";

tiny[i].style.width="2px";

tiny[i].style.height="2px";

star[i].style.visibility="hidden";

tiny[i].style.visibility="visible"

}

}

function update_tiny(i) {

if (--tinyv[i]==25) {

tiny[i].style.width="1px";

tiny[i].style.height="1px";

}

if (tinyv[i]) {

tinyy[i]+=1+Math.random()*3;

if (tinyy[i]<shigh+sdown) {

tiny[i].style.top=tinyy[i]+"px";

tinyx[i]+=(i%5-2)/5;

tiny[i].style.left=tinyx[i]+"px";

}

else {





tiny[i].style.visibility="hidden";

tinyv[i]=0;

return;

}

}

else tiny[i].style.visibility="hidden";

}

document.onmousemove=mouse;

function mouse(e) {

set_scroll();

y=(e)?e.pageY:event.y+sdown;

x=(e)?e.pageX:event.x+sleft;

}

function set_scroll() {

if (typeof(self.pageYOffset)=="number") {

sdown=self.pageYOffset;

sleft=self.pageXOffset;

}

else if (document.body.scrollTop || document.body.scrollLeft) {

sdown=document.body.scrollTop;

sleft=document.body.scrollLeft;

}

else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {

sleft=document.documentElement.scrollLeft;

sdown=document.documentElement.scrollTop;

}

else {

sdown=0;

sleft=0;

}

}

window.onresize=set_width;

function set_width() {

if (typeof(self.innerWidth)=="number") {

swide=self.innerWidth;

shigh=self.innerHeight;

}

else if (document.documentElement && document.documentElement.clientWidth) {

swide=document.documentElement.clientWidth;

shigh=document.documentElement.clientHeight;

}

else if (document.body.clientWidth) {

swide=document.body.clientWidth;

shigh=document.body.clientHeight;

}

}

function createDiv(height, width) {

var div=document.createElement("div");

div.style.position="absolute";

div.style.height=height+"px";

div.style.width=width+"px";

div.style.overflow="hidden";

div.style.backgroundColor=colour;

return (div);

}

// ]]>

</script>
 

Thursday, 6 December 2012

Seo Meta tag Description


As you might know blogger recently changed its old interface to completely a new one, and blogger team added some most awaited new features to its new interface including dynamic meta description tag for both home page and individual posts. Before these changes, we were facing issues while adding descriptions separately for Home page and single posts. Because blogger used to only include the home page's description in the source code, and there wasn't any description for single posts. And WordPress had these all features for years. Therefore, blogger team was working for years to make blogger more SEO friendly. Now we can optimize our blog's home page and single posts by adding unique meta descriptions.

But as usual, you'll have to make settings in order to make everything works fine. So today's post will guide you how to make a correct setting for both meta description tag for home page and for single posts. By default the dynamic meta description tag is disabled in blogger, so we will enable it and after that we will be able to make further setting, but one thing should be kept in mind that these meta tags are just for search engines' bots not for human visitors. These will be shown only in the source code of the blog and won't be shown on blog. Now let's start the procedure.

How to Enable meta description tag in Blogger for home page?

  • Go to Blogger
  • Setting >> Search preferences
  • Click on Edit >> Yes >> Write a description for your blog's home page and the description must be under 150 characters, above 150 characters is not allowed, see below pictures

there are two screen shoots above, in the first one the meta description for blog home page was by default disabled, so you'd enable it and after that you'll write a description for maximum 150 characters for your blog's home page. Adding more than 150 characters may harm your blog. After adding description just click on save changes. 

Now if you're using a default blogger template then you can easily find the meta description tag in the source code, as I already told you that it is not for human visitors but only for search engines. So you can just right click on your blog's home page and click on source code, so you can find the meta description for your blog in the source code..

But one thing is to make sure that if you're using a custom blogger template then you might not find the description in the source code, because mostly custom blogger  templates are using the old static blogger meta tag. So to avoid this and show the dynamic tag provided by blogger, you must add a piece of XML code to your template to make things in order. Here is how?

  1. Blogger >> Template >> HTML >> Proceed
  2. Now find <head> tag in your template and just after/below it paste following code
<b:if cond='data:blog.metaDescription != &quot;&quot;'>
<meta expr:content='data:blog.metaDescription' name='description'/>
</b:if>
Save your template and you've done it for custom templates as well. Now once again check your blog's home page source code and this time you'll find meta description for your blog.

Adding meta description to single posts? 

Now when you've enabled the meta description option in Blogger Setting >> Search Preferences, you will find an additional feature at right side of the post editor when you write a new post for your blog, see below image for example:
At the right side of your post body you can see a box for search description, so now you can easily add search description for each of your blog's new posts. Also if you've time then update the older posts and add up to 150 letters to each post. However, this option won't be there until you enable the meta description from the Search Preferences page under the setting page.

Remember, the description you add to every new post should be different than post title and should have a brief summary about the post. If you use this feature correctly then chances are higher to get first position in search results pages.

Leave a comment below the post if you've further questions, and always respect others in the world.

Sunday, 2 December 2012

7 Reasons that Destroys Your Search Engine Ranking

Do you ever think about the topic “Reasons why you are not getting a good search engine ranking.” Search engine ranking is very important for every bloggers for getting a huge traffic and it is not that much of easy. Today I would like to share about the topic “10 Reasons that Destroys Your Search Engine Ranking”.

This article must be helpful for new bloggers to avoiding there mistake and build a good search ranking. According to Google search ranking they follow some rules .If your blog or site do not satisfying the rules or not following the rules, your blog defiantly have a Zero search ranking. The bellow 10 points will give the exact reasons that destroy your search engine ranking.

Irrelevant and duplicated contents


This is one of the major mistakes done by every new bloggers, referring a blog or website is ok but if you are copying all the content and paste in your blog that is big mistake and it will definitely destroy your search engine ranking.

Putting irrelevant content to your blog also destroy your search ranking. For example your blog is based on sports and you add an article about cinema. Some readers coming to that blog for reading sports news, you can think what happen next. That’s same in happen in search ranking.

Try to avoid these things while your blogging and try to put Pure and unique content to your blog.


Optimization of Links


If you do not want to improve search engine ranking then do not place links that will lead to other relevant sites or resources. In other words, always underestimate the importance of links and make them work in such a way that they dilute the entire process of improving the search engine ranking of your site or blog.

Try to avoid the above and give some importance to optimization of your blog links. Search ranking always give importance to Backlinks.


Standing useless


 This is one of the major things that destroy your search ranking. Never specify what you do and put some fancy name to attract customer’s attention. The general rule is to project your line of work and then place your name at the end of the title tag thereby giving your keyword phrase first preference. If you are not following these then you don’t have a good search ranking.


Putting unrelated title


This is a mistake done by every new bloggers, putting some unrelated title to their content. Post title is very important for a content search and if the title is irrelevant then it will destroy your Search ranking.


You are not thinking local


The major reason that your blog never get a good rank is always think within the box and never go for targeting local customers for any particular niche. Being vaguely global will definitely help you to throw away your search engine ranking because local campaigning has brighter chances for success in some cases like small business ventures.


Failure in updating contents


You are not updating your content and keep it static both for websites and blogs. Doing so will increase the chances that Google destroy your blog search rank.


You are not educating your audience


You are putting some funny and unrelated content in your blog and there is no use with your blog to the audience then Google destroys your blog search ranking. Try to put some valuable contents and get a good rank.

Try to avoid these things while blogging and keep your blog search ranking good. You know that search result traffic only stands for a long time.....Getting a huge traffic you must have good search rank.

At last have a nice day…............
Posted By Rana

Top Tips To Increase Alexa Rank

In the Entire World there is uncountable websites available, and its increasing everyday every minute. Alexa rank plays an important role in your online career. If you serious in your blogging career you must pay attention in your site's Alexa rank. Let’s know more about benefits of alexa ranking.


What is the purpose of alexa…?


This ranking is not important for those blogger or site owner who are not serious and don't want to make money online. The alexa rank shows your site status that how much it is good or bad. Now talk is how it is important? Well, as definition above it is based on your site traffic, so whenever an advertiser wants to advertise their product or service they will check your alexa rank for understanding how much popular your website and how many traffic you get. Keep in mind, if you have not smart amount of traffic on your site you'll not get success to make money. So increasing alexa rank with real traffic is an important part for blogging career.


7 things to  improve your alexa rank:


Well, it’s not very easy to increase alexa rank. Many traffic exchange site can boost your site rank but this is not real. I recommended you to make real visitor to your site. To do below some tricks you have to create a free account on alexa website. Here are some killer tips for improving alexa rank. Follow me...


1. Publish quality post everyday


You might hear the "Content is King" for a blog. So update your blog site everyday with unique post to get decent amount of quality traffic.


2. Increase your visitor globally

Hence, more visitor means more quality ranking, so don't aim to get visitors only from your local area or country. Keep in mind always, when you publish a website or a blog you are worldwide. So your traffic source target should be worldwide. Optimize your site or blog for worldwide visitors.


3. Try to get review about your site on alexa.com


Tell your visitors and your friends to leave a positive review about your site in alexa.com. This will help you better for improving. You can also buy reviews from some freelancer if you can afford.


4. Write posts about Alexa

In your blog, write some post about alexa.com such as how to improve alexa position, alexa review, alexa ranking advantages, benefits of alexa toolbar and widget, how an advertiser choose a site by analyzing alexa rank for advertising, how to get top position in alexa ranking etc.


5. Verify your ownership on alexa.com


Create an account in alexa.com (free) and add your site. After adding your site you will need to verify your site for real ownership by adding a simple Meta tag.


6. Try to get more alexa sitelinks.


Sitelink also can improve your alexa ranking. By creating backlinks you can get sitelink on alexa.com. Leave a comment on other site or blog, participate on forums, groups and community with your site address. This will increase your pagerank, backlink and traffic also.


7. Install Alexa toolbar to your browser


It’s very important for a publisher to install and use alexa toolbar in their browser. This is very effective way. Simply click here to install alexa toolbar for free of charge.

As described above, I hope you get what is alexa ranking and how it is important. In my personal experience, posting frequently is the main tricks for getting a smart position in alexa, because without any quality update content no one will visit your site again and again plus you will drop from search engine ranking position.

If you have any doubt in this article, feel free to ask me ..Dont forget to use the comment box for share your thoughts..

At last have a nice day................
Posed By Rana

Add Image or Icon Before Every Blog Post Titles


Today we are discuss about How to Add Image or Icon before Every Post Titles .Adding an image or avatar of your blog before every blog post is a great concept and it is very simple to add in blogger blog. We are going to learn how to add your own image, avatar or icon before your post titles. This will present your blog more professional. We also add our brand logo as our post title avatar. Do you want to know how it looks like just see the picture above….follow the bellow steps to add avatar before blog post.



Add image or Icon Before Post Titles


1. Log in to Blogger blog

2. Go to your blogger dashboard

3. Now click Template from left side menu

4. Backup your full template before editing

5. Click Edit HTML, Click Proceed

6. Search for .post h3 or .post h2 by pressing Ctrl+F

7. You find the some code like bellow..

.post h3 { font-size: XXpx; font-family: Arial, sans-serif; font-weight: normal; color: #XXXXXX; margin: Xpx; padding: Xpx Xpx Xpx Xpx; }

8. Now select whole code and replace with below code…

.post h3 { background: url(YOUR IMAGE LINK GOES HERE) no-repeat top left; padding: 0px 5px 0 35px; line-height: 1.5em; font-size:20px; margin:10px 0; font-weight:bold; }

Don’t forget to make these changes…

**Replace yellow text with your icon/ image/ avatar picture.
**Make sure your image size is 30px X 30px.
**It will be good to see if you use your image with white background and 1px gray border.

9. Finally click Save Template and you are done.

That’s all. If you still have any problem just let me know. Don’t forget to use the comment box for your valuable thoughts.
At last have a nice day… 

HAve Good Visting keep visting  for more tips
Related Posts Plugin for WordPress, Blogger...