Saturday, December 27, 2014

How to Add 2015 New Year Fireworks Decoration for Blogger

Hi friends,Today i came up with new blogger tricks, its a awesome fireworks decoration for 2015 new year using JavaScript.It can be add it to your blog easily.This scripts works for every modern browsers. if you are interesting with it check below link before add it to your blogger. Hope this helps to decorate your personal blog,blogger tricks blog in this  new year 2015.

Add-2015-New-Year-Fireworks-Decoration-for-Blogger

Awesome Lights Effect Widget for Blogger



How to Add Christmas Lights Widget for Blogger


1. Go to Blogger Dashboard > Template
2. Backup your template
3. Click on Edit HTML
4. Find  </body>   and add below code just before it
<script type="text/javascript">
// <![CDATA[
var bits=80; // how many bits
var speed=33; // how fast - smaller is faster
var bangs=5; // how many can be launched simultaneously (note that using too many can slow the script down)
var colours=new Array("#03f", "#f03", "#0e0", "#93f", "#0cf", "#f93", "#f0c");
//                     blue    red     green   purple  cyan    orange  pink

var bangheight=new Array();
var intensity=new Array();
var colour=new Array();
var Xpos=new Array();
var Ypos=new Array();
var dX=new Array();
var dY=new Array();
var stars=new Array();
var decay=new Array();
var swide=800;
var shigh=600;
var boddie;

if (typeof('addRVLoadEvent')!='function') function addRVLoadEvent(funky) {
  var oldonload=window.onload;
  if (typeof(oldonload)!='function') window.onload=funky;
  else window.onload=function() {
    if (oldonload) oldonload();
    funky();
  }
}

addRVLoadEvent(light_blue_touchpaper);

function light_blue_touchpaper() { if (document.getElementById) {
  var i;
  boddie=document.createElement("div");
  boddie.style.position="fixed";
  boddie.style.top="0px";
  boddie.style.left="0px";
  boddie.style.overflow="visible";
  boddie.style.width="1px";
  boddie.style.height="1px";
  boddie.style.backgroundColor="transparent";
  document.body.appendChild(boddie);
  set_width();
  for (i=0; i<bangs; i++) {
    write_fire(i);
    launch(i);
    setInterval('stepthrough('+i+')', speed);
  }
}}
function write_fire(N) {
  var i, rlef, rdow;
  stars[N+'r']=createDiv('|', 12);
  boddie.appendChild(stars[N+'r']);
  for (i=bits*N; i<bits+bits*N; i++) {
    stars[i]=createDiv('*', 13);
    boddie.appendChild(stars[i]);
  }
}
function createDiv(char, size) {
  var div=document.createElement("div");
  div.style.font=size+"px monospace";
  div.style.position="absolute";
  div.style.backgroundColor="transparent";
  div.appendChild(document.createTextNode(char));
  return (div);
}
function launch(N) {
  colour[N]=Math.floor(Math.random()*colours.length);
  Xpos[N+"r"]=swide*0.5;
  Ypos[N+"r"]=shigh-5;
  bangheight[N]=Math.round((0.5+Math.random())*shigh*0.4);
  dX[N+"r"]=(Math.random()-0.5)*swide/bangheight[N];
  if (dX[N+"r"]>1.25) stars[N+"r"].firstChild.nodeValue="/";
  else if (dX[N+"r"]<-1.25) stars[N+"r"].firstChild.nodeValue="\\";
  else stars[N+"r"].firstChild.nodeValue="|";
  stars[N+"r"].style.color=colours[colour[N]];
}
function bang(N) {
  var i, Z, A=0;
  for (i=bits*N; i<bits+bits*N; i++) {
    Z=stars[i].style;
    Z.left=Xpos[i]+"px";
    Z.top=Ypos[i]+"px";
    if (decay[i]) decay[i]--;
    else A++;
    if (decay[i]==15) Z.fontSize="7px";
    else if (decay[i]==7) Z.fontSize="2px";
    else if (decay[i]==1) Z.visibility="hidden";
    if (decay[i]>1 && Math.random()<.1) {
       Z.visibility="hidden";
       setTimeout('stars['+i+'].style.visibility="visible"', speed-1);
    }
    Xpos[i]+=dX[i];
    Ypos[i]+=(dY[i]+=1.25/intensity[N]);

  }
  if (A!=bits) setTimeout("bang("+N+")", speed);
}
function stepthrough(N) {
  var i, M, Z;
  var oldx=Xpos[N+"r"];
  var oldy=Ypos[N+"r"];
  Xpos[N+"r"]+=dX[N+"r"];
  Ypos[N+"r"]-=4;
  if (Ypos[N+"r"]<bangheight[N]) {
    M=Math.floor(Math.random()*3*colours.length);
    intensity[N]=5+Math.random()*4;
    for (i=N*bits; i<bits+bits*N; i++) {
      Xpos[i]=Xpos[N+"r"];
      Ypos[i]=Ypos[N+"r"];
      dY[i]=(Math.random()-0.5)*intensity[N];
      dX[i]=(Math.random()-0.5)*(intensity[N]-Math.abs(dY[i]))*1.25;
      decay[i]=16+Math.floor(Math.random()*16);
      Z=stars[i];
      if (M<colours.length) Z.style.color=colours[i%2?colour[N]:M];
      else if (M<2*colours.length) Z.style.color=colours[colour[N]];
      else Z.style.color=colours[i%colours.length];
      Z.style.fontSize="13px";
      Z.style.visibility="visible";
    }
    bang(N);
    launch(N);
  }
  stars[N+"r"].style.left=oldx+"px";
  stars[N+"r"].style.top=oldy+"px";
}
window.onresize=set_width;
function set_width() {
  var sw_min=999999;
  var sh_min=999999;
  if (document.documentElement && document.documentElement.clientWidth) {
    if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
    if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  }
  if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
    if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
    if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  }
  if (document.body.clientWidth) {
    if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
    if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  }
  if (sw_min==999999 || sh_min==999999) {
    sw_min=800;
    sh_min=600;
  }
  swide=sw_min;
  shigh=sh_min;
}
// ]]>
</script><a href="http://www.bloggertrix.com/"></a>
 Hint: If you want change fireworks colors. you have to change red color code with new color codes.
4. Now save your Template.

You are done. If you have any problem related with this new blogger tricks , New Year Fireworks Decoration for Blogger. Just leave a comment or  message .I will help to you.

Author Bio: Sohan Jayasinghe is the owner and author of Bloggertrix.com .He has been blogging since 2009 and writing Blogger trix since 2010.If you want to contact him, Just leave a message via contact us page or connect with facebook or twitter

Saturday, December 20, 2014

Add Christmas Snow Falling Effect With Snowman for Blogger

How you friends? Hope you all doing great. Christmas seasons is coming,For this 2014 season you can decorate your blog with snow falling effect.So this post will help you to add Snow falling effect for your blog. last Christmas season, i posted about how to add  light decoration for your blog. if you are interesting with it check below link. Both are included with demo. Hope this help.

/Add_Christmas_Snow_Falling_Effect_With_Snowman_for_Blogger

Awesome Christmas Lights Widget for Blogger


How to Add Christmas Lights Widget for Blogger


1. Go to Blogger Dashboard > Template
2. Backup your template
3. Click on Edit HTML
4. Find  <body>   and add below code just after it
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js' type='text/javascript'></script>
<script src='http://code.jquery.com/jquery-migrate-1.2.1.js' type='text/javascript'</script>
<script type='text/javascript'>
//<![CDATA[
(function(b){b.snowfall=function(a,d){function s(c,f,g,h,j){this.id=j;this.x=c;this.y=f;this.size=g;this.speed=h;this.step=0;this.stepSize=e(1,10)/100;if(d.collection)this.target=m[e(0,m.length-1)];c=b(document.createElement("div")).attr({"class":"snowfall-flakes",id:"flake-"+this.id}).css({width:this.size,height:this.size,background:d.flakeColor,position:"absolute",top:this.y,left:this.x,fontSize:0,zIndex:d.flakeIndex});b(a).get(0).tagName===b(document).get(0).tagName?(b("body").append(c),a=b("body")):
b(a).append(c);this.element=document.getElementById("flake-"+this.id);this.update=function(){this.y+=this.speed;this.y>n-(this.size+6)&&this.reset();this.element.style.top=this.y+"px";this.element.style.left=this.x+"px";this.step+=this.stepSize;this.x+=Math.cos(this.step);if(d.collection&&this.x>this.target.x&&this.x<this.target.width+this.target.x&&this.y>this.target.y&&this.y<this.target.height+this.target.y){var b=this.target.element.getContext("2d"),c=this.x-this.target.x,a=this.y-this.target.y,
e=this.target.colData;if(e[parseInt(c)][parseInt(a+this.speed+this.size)]!==void 0||a+this.speed+this.size>this.target.height)if(a+this.speed+this.size>this.target.height){for(;a+this.speed+this.size>this.target.height&&this.speed>0;)this.speed*=0.5;b.fillStyle="#fff";e[parseInt(c)][parseInt(a+this.speed+this.size)]==void 0?(e[parseInt(c)][parseInt(a+this.speed+this.size)]=1,b.fillRect(c,a+this.speed+this.size,this.size,this.size)):(e[parseInt(c)][parseInt(a+this.speed)]=1,b.fillRect(c,a+this.speed,
this.size,this.size));this.reset()}else this.speed=1,this.stepSize=0,parseInt(c)+1<this.target.width&&e[parseInt(c)+1][parseInt(a)+1]==void 0?this.x++:parseInt(c)-1>0&&e[parseInt(c)-1][parseInt(a)+1]==void 0?this.x--:(b.fillStyle="#fff",b.fillRect(c,a,this.size,this.size),e[parseInt(c)][parseInt(a)]=1,this.reset())}(this.x>l-i||this.x<i)&&this.reset()};this.reset=function(){this.y=0;this.x=e(i,l-i);this.stepSize=e(1,10)/100;this.size=e(d.minSize*100,d.maxSize*100)/100;this.speed=e(d.minSpeed,d.maxSpeed)}}
function p(){for(c=0;c<j.length;c+=1)j[c].update();q=setTimeout(function(){p()},30)}var d=b.extend({flakeCount:35,flakeColor:"#ffffff",flakeIndex:999999,minSize:1,maxSize:2,minSpeed:1,maxSpeed:5,round:false,shadow:false,collection:false,collectionHeight:40},d),e=function(b,a){return Math.round(b+Math.random()*(a-b))};b(a).data("snowfall",this);var j=[],f=0,c=0,n=b(a).height(),l=b(a).width(),i=0,q=0;if(d.collection!==false)if(f=document.createElement("canvas"),f.getContext&&f.getContext("2d"))for(var m=
[],f=b(d.collection),k=d.collectionHeight,c=0;c<f.length;c++){var g=f[c].getBoundingClientRect(),h=document.createElement("canvas"),r=[];if(g.top-k>0){document.body.appendChild(h);h.style.position="absolute";h.height=k;h.width=g.width;h.style.left=g.left;h.style.top=g.top-k;for(var o=0;o<g.width/d.minSize;o+=d.minSize)r[o]=[];m.push({element:h,x:g.left,y:g.top-k,width:g.width,height:k,colData:r})}}else d.collection=false;b(a).get(0).tagName===b(document).get(0).tagName&&(i=25);b(window).bind("resize",
function(){n=b(a).height();l=b(a).width()});for(c=0;c<d.flakeCount;c+=1)f=j.length,j.push(new s(e(i,l-i),e(0,n),e(d.minSize*100,d.maxSize*100)/100,e(d.minSpeed,d.maxSpeed),f));d.round&&b(".snowfall-flakes").css({"-moz-border-radius":d.maxSize,"-webkit-border-radius":d.maxSize,"border-radius":d.maxSize});d.shadow&&b(".snowfall-flakes").css({"-moz-box-shadow":"1px 1px 1px #555","-webkit-box-shadow":"1px 1px 1px #555","box-shadow":"1px 1px 1px #555"});p();this.clear=function(){b(a).children(".snowfall-flakes").remove();
j=[];clearTimeout(q)}};b.fn.snowfall=function(a){if(typeof a=="object"||a==void 0)return this.each(function(){new b.snowfall(this,a)});else if(typeof a=="string")return this.each(function(){var a=b(this).data("snowfall");a&&a.clear()})}})(jQuery);
//]]>
</script>
<script type='text/javascript'>
//<![CDATA[

jQuery(document).ready(function(){
    jQuery(document).snowfall({
        flakeCount : 800,
        flakeColor : "#ffffff",
        flakeIndex: 999999,
        minSize : 1,
        maxSize : 4,
        minSpeed : 2,
        maxSpeed : 8,
        round : true,
        shadow : false,
    });
});
//]]>
</script>
<style>.btriman {position:absolute;top:0;right:0;}#btrixposition {position:relative;}</style>
<div id="btrixposition"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgf_ZemYGr8KyZ1UaAUW-GTtKWEq2TOIVXcMFGhcdT9icwdRClex0fhluS7thCfaYlZl9cpRdRiuw39UwbDiy-MbRvplyKO248ctn8m6FeB3iysgviHFuMbXUZRa3-NWXRToVWOAXD5amlO/s1600/Bloggertrixman.png" class="btriman"/><a href="http://www.bloggertrix.com/"></a></div>
 Hint: If you want, you can change above red value as your like.
4. Now save your Template.

You are done. If you have any problem related to this Christmas Lights Widget for Blogger. Just leave a comment or  message .I will help to you.

Author Bio: Sohan Jayasinghe is the owner and author of Bloggertrix.com .He has been blogging since 2009 and writing Blogger trix since 2010.If you want to contact him, Just leave a message via contact us page or connect with facebook or twitter

Friday, November 21, 2014

What Experts are Saying About New SEO Tactics?

Online presence has become even more crucial for entrepreneurs. Strong online base is a necessity for an effective PR, internet marketing and sales enhancement. The ROI (return of investment) depends largely on how well you perform in the virtual world. I have been researching and found a lot of articles with the similar title, �Is SEO dead?� and I am like what! How can SEO of all the things be dead? Search Engine Optimization, if we use a little common sense, is required even more in today�s world where internet is actually ruling the business world.

About-New-SEO-Tactics


No, I am not saying that SEO is still the same as the traditional practices. It has changed a lot in the past few years but where do the things remain monotonous in business? It is undeniable and even I am not refusing that the scenery of search engine optimization has changed and is still changing. All Google has done is that it has started penalizing low-quality and quantity based SEO tactics. But who doesn�t appreciate quality? SEO is now no more limited to keywords and link building as it has got its diverse components such as mobile optimization, social media marketing and other things we are going to take a closer look to in the following write-up.

Link Building is a thing of past

Not exactly the link building but yes, merely link building is past. Long gone are days when your website did well on ranking pages solely on the number of links you made. Today, not only quality links are required to lead but also a strategy to build your brand image. Since the launch of Google authorship where the content is linked to the authors� profile, the ranking game has changed.  Building your brand is a pre-step to rank well.

What is SEO then?

Let�s say SEO is dead and believe it also. Then what is the SEO industry all about today if not just link building? The real and effective SEO stands on three things and links building is one of them. The other two equally important components are content and social media. The catch is not the three individual elements but the relationship between them. The content which you must write keeping yours� and yours� target audience�s need in mind - if gets shared on social media more and more -  will generate back-links and credibility for you. Links from high quality sources and sharing by real users is becoming a key factor to rank well, after all the basic SEO is about generating traffic and improving ranking in search engines.

All of this starts with one thing � Content

If you have done SEO and internet marketing ever, you will relate to this. The key to successful SEO today is good content. Above design and other things, users stay engaged with your website due to content. Even the social media shares are content driven. The why not give this more importance? Content marketing like SEO is not same as it used to be. The industry is maturing and now marketers focus on savvy and engaging content which brings higher ROI. Again the competition is not of quantity but the quality. It is recommended to always post good content and not even average things which are inevitabilities for building your brand.

Do not get limited to computer screens

Number of mobile users are exceeding every other day. Mobile devices are best ways to reach wide spread of your customers. Heard about Google�s Hummingbird update? It has got difficult than ever before to rank well without mobile optimized strategy. The responsive design is must but not enough. You need a different and effective strategy for mobile devices. Look around you and see how many are not using cell phones? You will hardly find anyone. Since it is very obvious, then why not do proper investment on this side of search engine optimization.

Social Media � the new addition

To rule spywares and malicious content, Google has started relying more on human signals. Hence it is of extreme importance to tell your SEO Company to make a subtle and tested plan for your social presence. Make sure your blogs have built-in sharing options to reach Google�s and other search engines� notice. As I have explained above, social media has started intersecting with SEO in the ranking race.
At the same time as developing the SEO strategy for your website, try to compose balance in the three components from writing excellent content to building reputable links to maintaining social media presence. Customize your strategy according to your company�s strength and weaknesses and invest in a way to go closer to your niche audience. The above tips are helpful even if you are outsourcing your SEO services.  

This article is written by Shara Roy. She is internet marketing strategist, working at Crocuss. She loves to share her ideas on new technologies related to internet marketing and web development. Visit author's website

Write for bloggertrix.com. We are happy to publish your article. Follow guideline here

Monday, October 13, 2014

Four Simple Tips To Improve Your Site�s Typography

I�m a writer, so naturally I think that all web design ought to start with my text; the rest of the page should be be built to complement what I have written. That way of thinking puts typography front and center. I�m not the only one who thinks so, but it�s an opinion that doesn�t hold much sway among web designers; it has even less traction with businesses and bloggers. And so typography doesn�t get the attention it deserves.
Typography matters because it is what makes a site pleasant to read. You might think you have written the most informative, moving, or hilarious article that ever saw the light of day, but if the typography is so bad that people go cross-eyed when they look at it, your brilliance is going to be wasted.



Typography is a complex art-science, but a few simple tweaks to a web page�s typography can make a huge difference to readability. I�m going to give you four tips and then point you in the direction of the web�s best typographic resource.

Stick To A Couple Of Typefaces

If you�re an experienced designer, you can do crazy things with font combinations and it�ll look great (probably). If you�re not a designer, don�t risk it. Stick with a couple of typefaces: preferably one for headings and one for body text. Using a serif for one and a sans serif for the other is a common choice � it�s not important if you use the serif for headings and the sans for body text or vice versa, both can work. Don�t try to be too smart with font combinations � two well suited fonts look great together; three poorly chosen fonts will ruin a page.

4 Desktop Blogging Applications For Writers 

Consider Appropriate Sizes

Font sizes appropriate for print are too small for the screen. If you want people to read your content, for the love of Garamond, don�t make the text so tiny they have to zoom in or put their noses against the screen to see it.
Take a look at the text sizes on Medium for a approximation of how large your text should be, although be aware that the ideal size differs depending on the typeface, screen size, and screen resolution.

Line Spacing And Line Length

It�s not just the size of the text that matters, it�s the distance between the lines of text. Cramming the lines close together makes them difficult to read. Line spacing is controlled by the line-height CSS property, which should be set to a minimum of 1.2 times the height of the typeface and probably somewhat higher, but not much higher than 1.5 or the lines will look disassociated. Line length � the distance between the first and last characters of a line of text on the screen � should be somewhere between 50 and 90 characters. It should not stretch too far across the page and certainly not from one edge of the screen to another. Shorter lines are easier to read.

Only Underline Links

This one isn�t such a big deal, but it�s a personal irritation of mine so I�m going to include it. Underlining is not a useful habit except for links. Links should be the only text that is underlined. Underlining should not be used for emphasis � that�s what bold and italics are for. It shouldn�t be used for headings, where bolding, centering, altering type size, and altering typeface are all better options.
These four tips will do wonders for your site�s readability: use conservative font combinations, increase the type size, optimize line height and length, and remove underlining. But, there�s a lot more to typography than that, most of which you�ll find in Matthew Butterick�s excellent Butterick�s Practical Typography.

How To Change Blog Links color and font style

About Graeme Caldwell -- Graeme works as an inbound marketer for Nexcess, a leading provider of Magento and WordPress hosting. Follow Nexcess on Twitter at @nexcess, Like them on Facebook and check out their tech/hosting blog, http://blog.nexcess.net/.

Tuesday, October 7, 2014

Divide/Break Blogger post into differernt Pages

Split up blogger pagesHey! It has been long time since I posted my previous post at ABT, so today I am back with yet another post which teaches you how you can split up your blogger post into different pages just like in blogs like Mashable and other WordPress blogs.

To create engagement and to divide the posts in section this method can be very useful. Also if you have a very long post you may use this method so the long post will now be splited into many shorts pages.



You can see the live demo of how it works by clicking the below button

Live Demo


Once you have seen the demo to split up your post what you need to do is just follow the below steps.


Add the code in Post Editor


Firstly open the post editor and switch to HTML tab. By default the Compose tab is selected. After opening it paste the below code

<style>
.post-pagination {
    margin: 20px auto;
    text-align: center;
    width: 100%;
}
.button_1, .button_2, .button_3 {
    border: 2px solid #f4655f;
    font-weight: 900;
    padding: 6px 36px;
    color:#f4655f;
    transition:ease 0.69s !important;
}
.button_1:hover, .button_2:hover, .button_3:hover {
    background: none repeat scroll 0 0 #f4655f;
    color: #fff;
    text-decoration: none;
}
</style>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('.button_1').click(function(){
jQuery('.content_1').fadeIn('slow');
  jQuery('.content_2').fadeOut('fast');
jQuery('.content_3').fadeOut('fast');
jQuery(this).css('background','#F4655F');
jQuery(this).css('color','#fff');
jQuery('.button_2').css('background','#fff');
jQuery('.button_2').css('color','#F4655F');
jQuery('.button_3').css('background','#fff');
jQuery('.button_3').css('color','#F4655F');
return false;
});
jQuery('.button_2').click(function(){
jQuery('.content_1').fadeOut('fast');
  jQuery('.content_2').fadeIn('slow');
jQuery('.content_3').fadeOut('fast');
jQuery(this).css('background','#F4655F');
jQuery(this).css('color','#fff');
jQuery('.button_1').css('background','#fff');
jQuery('.button_1').css('color','#F4655F');
jQuery('.button_3').css('background','#fff');
jQuery('.button_3').css('color','#F4655F');
return false;
});
jQuery('.button_3').click(function(){
jQuery('.content_1').fadeOut('fast');
  jQuery('.content_2').fadeOut('fast');
jQuery('.content_3').fadeIn('slow');
jQuery(this).css('background','#F4655F');
jQuery(this).css('color','#fff');
jQuery('.button_1').css('background','#fff');
jQuery('.button_1').css('color','#F4655F');
jQuery('.button_2').css('background','#fff');
jQuery('.button_2').css('color','#F4655F');
return false;
});
});
</script>

<div class="content_1">

Add content here


</div>

<div class="content_2" style="display: none;">

Add content here

</div>

<div class="content_3" style="display: none;">

Add content here

</div>

<div class="post-pagination">
<a class="button_1" href="#">1</a>
<a class="button_2" href="#">2</a>
<a class="button_3" href="#">3</a>
</div>

Now replace Add content here with the text you want in the respective pages and publish the post.

Important Points to Note before you move on


There are some points you need to note as they are very crucial for this particular splitting.

  1.  Make sure you have the jquery plugin in your blog, if not then add the below code just below the code <head> in your template

    <script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
  2.  It is preferred that you first draft the post and at the last point add this code and make respective changes as due to changing of tabs from Compose to HTML and vice versa the code may automatically get changed.
     
  3. You may have got the idea of the code pattern and I guess one can add more pages if they want (here the tut is given only for 3 pages) in case you have any problem drop a comment below and I will try to help you as soon as possible.

Thats it, you are done now. Now you and your visitors can see long posts divided just as you would see in WP posts.

Saturday, September 13, 2014

4 Desktop Blogging Applications For Writers

If you just write the occasional blog post, then WordPress/Blogger default editor is fine, especially since its recent update. But if you are like me and write several pieces each week (or sometimes even each day), then TinyMCE�s quirks can begin to grate. If your income depends on the content you�re writing, it�s not wise to trust browser based writing environments  it�s more than likely that nothing will go wrong, but I�ve experienced too many accidental refreshes and otherwise disappearing content to entrust my productivity to a web-based editor.


Desktop_Blogging_Applications_For%2BWriters

Thankfully, I don�t have to. There are plenty of desktop applications that integrate well with WordPress, allowing bloggers to write and publish their content without ever looking at the blogger admin dashboard. In this article, I�d like to take a look at my favorites.
The Well-Kept Secrets of Writing Quality Web Content

Byword / Marked Application

When I�m working on a Mac, the combination of the Byword text editor and the Marked markdown previewer is by far my favorite writing environment. I�ll focus on Byword here, but Marked has some very useful features, including link validation, keyword highlighting, readability statistics, and the ability to show previews with user-supplied CSS scripts.

Byword is a text editor. On the face of it, Byword is a very simple application. For me, that�s a great thing. I just want to sit down and type, but, although it looks simple, Byword actually quite feature-rich � with exactly the right features, too. Byword uses Markdown for formatting, which is a straightforward markup language that anyone can learn in an hour � and they should: it makes a huge difference to the writing experience and productivity. Byword offers excellent Markdown support, with easy-to-remember keyboard shortcuts for adding titles, links, lists, and so on.

But Byword wouldn�t deserve palace on this list if it couldn�t publish to WordPress. In fact, Byword can publish to WordPress, Blogger, Tumblr, and Evernote. Publishing is a Premium feature, but it�s not expensive and well-worth the price to omit the cut-and-paste-into-Wordpress stage of blogging.
Because Byword is available for the Mac, iPad, and iPhone, users can publish from anywhere.


Marsedit desktop blog editor


This is another tool for the Mac users out there. I couldn�t write a post about desktop blogging software without including Marsedit, the blogging tool of choice for many, including John Gruber, creator of Markdown, although Marsedit does brilliantly with Rich Text too.

Byword is an excellent text editor for writers, but Marsedit is a full-fledged blog editing tool, which is compatible with WordPress, Tumblr, Typepad and dozens of other content management systems. It features excellent media support, with one-click image insertion from a variety of sources. If you like, you can even integrate your favorite text editor with Marsedit, including BBEdit and TextMate.

Windows Live Writer


Windows Live Writer is getting a little long in the tooth, but it�s still the best Windows tool for publishing to WordPress. It offers many of the same features as Marsedit, except without the Markdown support. If you�re a WordPress blogger who prefesr to work in a Windows environment, Windows Live Writer should be your first port of call.
How to Write Your Blog in a Successful Series


Blogilo Editor


Last, but certainly not least, is a tool for our friends who prefer the Linux desktop. Blogilo features a WYSIWYG and HTML editor, with previewing that matches your blog�s style. Users can create, modify, and delete posts, as well as schedule publication.

5 Things You Can't Forget Before Publishing Blog Post

These four are my favorites, but they�re far from the only options. What do you use? Let us know in the comments below.

About Matthew - Matthew Davis is a technical writer and linux geek for Future Hosting. Follow them on Twitter @fhsales, Like them on Facebook, and check out more of Matthew's writing on Future Hosting's web hosting blog.

Wednesday, September 10, 2014

7 Reasons Not to Write a Personal Blog

Here you will find out why you shouldn�t write a personal blog, and some reasons why you should not write any sort of blog at all. There are plenty of articles on the Internet that claim blogging will get you rich and is fun and is the greatest thing since the invention of the car, but they are often posted to get people to buy blogging services such as hosting, content management systems and SEO (Search Engine Optimization) services. Here are some reasons why a personal blog is a bad idea.

Not-to-Write-Personal-Blog

You do not get paid to write a blog and it is work


You could be getting paid for the writing you are doing. When you write a blog post that is work. It is something that people are sat in offices doing right now and they are getting paid for it. Blogging may not seem like work at first, but after a few months it will be a slog, and you are not being paid for the slog. You are working for free and there is no way your affiliate money is going to fairly cover the amount of work you are doing. You could put the same amount of time into sweeping roads and make thirty times more than you are going to make via blogging.

Tips to Make Money Online with Affiliate Programs

It is not going to make you affiliate money in the way you think it will


Most people are disappointed by the amount of traffic they receive and amount of affiliate money they receive, and yet it is blindingly obvious if you think about it. How many personal blogs do you read? How many do your friends read? You may read the occasional blog about something that interests you, but do you read many �personal� blogs? Furthermore, how often do �you� click on affiliate adverts when you are on the Internet? Most of your clicks over the last year were probably by accident.

Few people want to read your thoughts unless you are famous


This is just a sad fact. You are not special and you are not coming up with anything that thousands of others have not come up with before you. If you think you are being original then you are not researching hard enough.

Most people run out of things to write about very quickly


This happens to most bloggers and is the number one reason why most blogs do not last longer than six months. They usually come to a halt when the hosting services expire. You are going to run out of things to write about very soon.

Most of your personal blog posts are not evergreen


An evergreen article is one that is still relevant and readable after a few months or years. For example, an article about heartbreak may be relevant for decades, but an article about how to program your VCR to record when you are out is not evergreen. Many of the personal things you write about are going to expire very quickly, which means that new readers are not going to be able to look over your old posts they will only read your most recent posts, which may make it harder to keep your readers.

There are plenty of other things you could be doing that are longer lasting


You could be carving wood figurines instead of blogging. It may not be spread around the Internet like your blog, but it will have more value and it will last longer. You could be taking a course in fixing cars or decorating houses. You could be making your dreams come true, instead of blogging onto a platform that you will probably delete in a few months when you are bored with it.

Getting no traffic and/or reading criticism will hurt your feelings


Working for six months and still having no traffic is heart breaking. It is horrible to find yourself pouring your heart into working on your blog, only to discover that nobody is reading it. The worst thing is when you do receive traffic and comments and they are negative. Some people enjoy criticizing because it makes them feel important and superior, and you are going to get that sort of thing on your comment section, and there is a chance it is going to hurt your feelings. 

Killer Method To Market Your Blog And Boost Traffic
Awesome 8 Tips To Get More Traffic To Your Blog

Author Bio: Sonia J. is a professional blogger and a writer for Bestessaytips.com that helps students with creative paper writing

Wednesday, September 3, 2014

Easy way to Unlock Huawei HSDPA Modems Free

HSDPA dongles are very famous in these days. Because most of are use HSPA dongles for browse internet.Unfortunately some dongles are locked to their service carrier.Unlocking dongles are very famous these days. Some Huawei dongle models are hard to get unlock sometime.Because Some tools are doesn't work properly..lets see, how to unlock this dongles in an easy way.

Unlock-Huawei-Unlock-Code

Step 1 : Go to this site

Step 2 : Now Sign in with GOOGLE + . You need to provide your email and password log in to it.
             (This is safe. don't worry about it. If you are not sure create new gmail account)

Google+_signin

Step 3 : Now click accept button like below

Step 4 : Next, Yo have to provide your Dongle IMEI number and Model like below and click
              calculate button.
dongle_details

Step 5 : Now you need to  Click Google Plus button like below.

google+share

Step 6 : Now you will get the result like below. Use NEW ALGO CODE as for your unlock code.

new_algo_code

Add some other network sim card and  add the NEW ALGO CODE you generated for your dongle and enjoy.If it won't connect create new profile for your network. If you have any problem about huawei unlocking let me know.

Thursday, August 28, 2014

The Well-Kept Secrets of Writing Quality Web Content

A simple way in which you can draw traffic to your website and make it more noticeable is by deploying excellent article writing techniques. The readers will always look for valuable information that will attract them every now and then to your website. All the content needs to be relevant to the main niche of your site in order to be efficient. How to write quality content is a question that many newbie writers have and here are some secrets that only the specialists know.

Secrets-of-content-writing

There are lots of resources about how to lead a SEO Campaign for your website. But  SEO is for search engines. Web contents for your site visitors. So, learn how to write quality web content in successful way. Read below articles for more ideas about it.

Formatting Of the Article


The format in which the article is presented needs to be readable. This is why you should use headlines that will grab the reader�s attention. Also, you may want to deploy numbers and bullets in order to break up a really long text and make it more manageable to read. The visitors are not attracted by long paragraphs that seem to be unmanageable.

Choose proper Topics


It is vital to write articles which are related to the content of your site. This means that the readers will get a high interest in your services and products. The relevancy of the articles is what keeps the site going. Even if it is tempting to write on topics that budge you, the whole idea is to give your niche readers what they actually need.

Use correct Writing techniques


The used tone has to be friendly and easy to grasp. You should avoid being too technical. Also difficult words should be avoided by all costs. Another important strategy is to stay within the given topic. The people who read the content are looking for a certain thing. So center the article on one certain aspect and dissect it as much as possible. Besides this, you have to offer information and facts which are useful and interesting to the reader. Even if you want to write a lot, it is better to focus on shorter articles that are easier to grasp. Before publishing the articles, do not forget to check the grammar and spelling. The whole text needs to flow in a smooth manner and look professional.


Do research before you write new article


All websites have it own unique strengths. Every author would like to increase their domain authority with popular contents so, if you do research before writing, you can understand what other contents are being offered across your marketplace. we need to understand our competition ,audience and what keywords we should focus on. Otherwise, you will miss the chance and wastage of money and time. Just write for your audience.

You have your own SEO plan and keywords. So, use them to tell your visitors to what are your contents, what include with it. Put Title tags, chapter headings. Make sure, keywords should match to your topic which you are writing.In case you do not master the above mentioned techniques, You have to follow all above techniques. Try to start your contents with your readers and find out what really want to know. So write for them. make your readers  into loyal readers. Readers are our targets, Not the search engine. Always try to focus contents. It will helps to achieve both goal. Website traffic and search engine ranking

Author Bio: Sohan Jayasinghe is the owner and author of Bloggertrix.com .He has been blogging since 2009 and writing Blogger trix since 2010.If you want to contact him, Just leave a message via contact us page.

Wednesday, August 13, 2014

Awesome Ways to Increase Feedburner Subscribers in Blogger

Feedburner subscribers are very important  for blogger development. It helps to get return visitors
to your  blog. Actually  this  is  simple  to  use and setup.Most of people are making mistakes that are
causing their  subscribers  grow slowly. There is no any single method to increase  your subscribers.
Only way get  subscribe to Rss  feed using effective method.Many bloggers wrote about this topic.
But i want to share my ideas whats coming to my head. lets see, How we can do this.

Get-Feedburner-Subscribers

Ways to Increase RSS feed Subscribers


Display Rss Icon On every blogger pages

I did this mistake, when i started my blog.I used Rss icon only my home page.There for i added it every single page of my blog.You can add bigger Rss icons for your blog.make sure its catchy and should be easily visible to the users.So it will helps to increases the chances of getting more subscribers to your blog.

Placement of Subscriber widget

Placement of Rss widget very important.If you choose the right place.It helps to gain your subscribers wisely.Best place to keep Rss Subcription form are imediatly after the article or top of right side bar of your blog.However i suggest you to add it to both palce.
Don't forget to add awesome style Subscriber widget to your blog.

Rss Feedburner Subscribe Widgets For Blogger

       Awesome Rss Feed Subscription Widget For Blogger
       Social Media And Rss Subscribe Widget For Blogger
       Blue Color Social Subscription Widget for Blogger
       Dark Style Rss Subscription Widget For Blogger
       Ger more In here

Ask Them to Verify their email address

Some of email subscribers just subscribe and they don't confirm their email address.Without confirming their email, they are not consider as subcribers of your blog.Therefore, you can leave a email them to verify their email address.

 How to check emails of Rss feed subscribers.

 1. Log in to http://feedburner.google.com
 2. Just click feed title of your blog and go to feed burner dashboard.
 3. Click publicize and click Email Subscriptions on left side bar.
 4. Scroll down, you can see total subscribers.(counter of verify and unverified subscribers)
     below to that counter, just click View Subscriber Details and view emails addresses. you can
     export it if you want.
 5. You can ask them to verify their email addresses by email to them.

Drive new traffic to your blog

To get some new traffic, Do blog commenting and guest posting.There have more chances to get new RSS feed subscribers from new visitors.

Write Unique contents for your audience

Your content might be valuable and unique.If people can find duplicate post somewhere else. There will have no reason to subscribe your RSS feed.Lets say, you are copy from popular blog on your niche.Your content still valuable but not unique. So,what do you think?  People end up subscribing your blog exactly.

Promote your blog in blogger communications

Most of blogger are promote their Rss Feed in forums post and signatures as well.Make a habit to not only give blog URL,Just try to include RSS Feed URL as well.It helps to gain some  subscribers for your blog.

If you're still not a subscriber of bloggertrix feed. You can simply add your email to "Subscribe Now" gadget on side bar or Subscriber form below to this article. Finally, after reading this article, you get to know 6 easy way to increase your feed subscribers.If you have some more own tricks to increase RSS subscribers,share below with comment.Hope this helps. good luck.

Tuesday, July 15, 2014

What Is The Importance Of Web 2.0 Links

Getting traffic on the blogs is one of the most serious problems faced by the bloggers. With the advent in technology and introduction of new tools, the process of link building and getting the site interlinked with other social and other networks has become easier. One of the most effective ways that has been introduced recently is the Web 2.0 links. This technique can be considered as the second generation of web. It provides an opportunity to the people to share their information online. The various technologies that can be effectively collaborated with web 2.0 comprises of social bookmarking, tags, RSS, AJAX and blogs. It is one of the best ways to build links and generate traffic to your blog or website.

web2.0_links

The technique of Web 2.0 links is an ideal tool for link building and content marketing. By implementing this tool in your SEO plan, you will surely be able to enhance the visibility of your site. You can get quality backlinks from the sites like Hub pages, Squidoo and Weebly in order to grab quality links.

If you are willing to generate more traffic towards your site by using the Web 2.0 links, there are certain things that you need to keep in mind. Most of these are available for free and simple to use. Here are some tips that will really help you enhance your website traffic.


* The first thing that you need to do is to sign up with the site and get your user account. Now, you need to complete your profile. Make sure you add an attractive description about yourself as well as your business. Make sure you add fresh content to your site. This will help you in boosting the popularity of the website and make use of Web 2.0 websites as links to your website. An interesting profile is the basic requirement to grab the attention of the readers.

* Another important thing in the process is to write compelling posts containing targeted keywords. Submit these posts to the web 2.0 sites. You can also add pictures and videos to enhance the visibility of your content. One of the major advantages of using the web 2.0 sites is that you can easily get in touch and interact with people who might be interested in the products you offer. Get engaged in conversations, join groups and keep sharing related and useful content to achieve your goals.
Web 2.0 links are today majorly used by the webmasters to optimize their site and grab quality links which can easily enhance the traffic on the website.

Saturday, July 5, 2014

5 Pre Loading Spinners for Blogger Blogs

Pre Loading Spinners
Hey! Its long time since I have posted on All Blogger Tricks. I have now shifted to a new school and I am now in the 11th grade so I hardly get any time. Still I managed to write down a post for my readers :) This tutorial will show you how you can add pre loading spinners to your blog. Many of you may have seen it and for those who haven't; its an effect added to blogs which is showed on before the site has loaded completely.  Once the site is loaded it slowly fades away. We encourage everyone to add one of it, as it makes the web more beautiful.



Coming back to the post, here I have 5 spinners tweaked for your blogger blogs. The respective coders of these spinners have been credited in the demo page under their creation. You can see the demo below, and ofcourse there would be no fade effect in the demo but surely in the code you would add in your blog.

Live Demo


If you liked any of the spinners and want to add it to your blogger blog then you need to copy the below given code of the respective spinner and paste it just below <body> tag.
Also if you already have jquery plugin in your blog you can remove it from the code.

Demo 1


    <div id="loader">
        <div class="spinner">
            <div class="spinner-inner"></div>
        </div>
    </div>
<script src='//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js'/>
    <script type="text/javascript">
        $(window).load(function () {
            setTimeout(function () {
                $(".spinner").fadeOut("slow");
                setTimeout(function () {
                    $("#loader").fadeOut("slow")
                }, 1000)
            }, 1000)
        });
    </script>
<style>#loader{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(10,10,10,1);z-index:1000}.spinner{position:fixed;width:100%;top:70%;height:30px;text-align:center;font-size:10px}.spinner,.spinner-inner{position:absolute;top:0;bottom:0;right:0;left:0;border:9px solid white;border-color:transparent white;margin:auto}.spinner{width:85px;height:85px;-webkit-animation:spin 2.2s linear 0s infinite normal;-moz-animation:spin 2.2s linear 0s infinite normal;animation:spin 2.2s linear 0s infinite normal}.spinner-inner{width:40px;height:40px;-webkit-animation:spinback 1.2s linear 0s infinite normal;-moz-animation:spinback 1.2s linear 0s infinite normal;animation:spinback 1.2s linear 0s infinite normal}@-webkit-keyframes spin{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}@-moz-keyframes spin{from{-moz-transform:rotate(0)}to{-moz-transform:rotate(360deg)}}@keyframes spin{from{transform:rotate(0)}to{transform:rotate(360deg)}}@-webkit-keyframes spinback{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(-360deg)}}@-moz-keyframes spinback{from{-moz-transform:rotate(0)}to{-moz-transform:rotate(-360deg)}}@keyframes spinback{from{transform:rotate(0)}to{transform:rotate(-360deg)}}</style>

Demo 2 


<div id='loader'>
<div class="wrap">
<div class="bg">
<div class="loading">
<span class="title">loading...</span>
<span class="text"><data:blog.title/></span>
</div> </div></div></div>
<script src='//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js'/>
    <script type='text/javascript'>
        $(window).load(function () {
            setTimeout(function () {
                $(&quot;.wrap&quot;).fadeOut(&quot;slow&quot;);
                setTimeout(function () {
                    $(&quot;#loader&quot;).fadeOut(&quot;slow&quot;)
                }, 1000)
            }, 1000)
        });
    </script>
<style>#loader{position:fixed;top:0;left:0;right:0;bottom:0;background:black;color:#eaf7ff;z-index:1000;font-family:sans-serif,arial}@-webkit-keyframes title{0%{opacity:0;right:130px}48%{opacity:0;right:130px}52%{opacity:1;right:30px}70%{opacity:1;right:30px}100%{opacity:0;right:30px}}@-moz-keyframes title{0%{opacity:0;right:130px}48%{opacity:0;right:130px}52%{opacity:1;right:30px}70%{opacity:1;right:30px}100%{opacity:0;right:30px}}@-webkit-keyframes fade{0%{opacity:1}100%{opacity:0}}@-moz-keyframes fade{0%{opacity:1}100%{opacity:0}}@-webkit-keyframes bg{0%{background-color:#306f99}50%{background-color:#19470f}90%{background-color:#734a10}}@-moz-keyframes bg{0%{background-color:#306f99}50%{background-color:#19470f}90%{background-color:#734a10}}@-webkit-keyframes blink{0%{opacity:0}5%{opacity:1}10%{opacity:0}15%{opacity:1}20%{opacity:0}25%{opacity:1}30%{opacity:0}35%{opacity:1}40%{opacity:0;right:-21px}45%{opacity:1;right:80px}50%{opacity:0;right:-21px}51%{right:-21px}55%{opacity:1}60%{opacity:0}65%{opacity:1}70%{opacity:0}75%{opacity:1}80%{opacity:0}85%{opacity:1}90%{opacity:0;right:-21px}95%{opacity:1;right:80px}96%{right:-21px}100%{opacity:0;right:-21px}}@-moz-keyframes blink{0%{opacity:0}5%{opacity:1}10%{opacity:0}15%{opacity:1}20%{opacity:0}25%{opacity:1}30%{opacity:0}35%{opacity:1}40%{opacity:0;right:-21px}45%{opacity:1;right:80px}50%{opacity:0;right:-21px}51%{right:-21px}55%{opacity:1}60%{opacity:0}65%{opacity:1}70%{opacity:0}75%{opacity:1}80%{opacity:0}85%{opacity:1}90%{opacity:0;right:-21px}95%{opacity:1;right:80px}96%{right:-21px}100%{opacity:0;right:-21px}}.wrap{font-size:18px;font-weight:700;left:25%;letter-spacing:5px;margin-left:-80px;margin-top:-40px;position:absolute;top:50%;width:68%}.bg{padding:30px 30px 30px 0;background:#306f99;-moz-animation:bg 1.5s linear infinite;-webkit-animation:bg 1.5s linear infinite;animation:bg 1.5s linear infinite;-moz-box-shadow:inset 0 0 45px 30px black;-webkit-box-shadow:inset 0 0 45px 30px black;box-shadow:inset 0 0 45px 30px black}.loading{position:relative;text-align:right;text-shadow:0 0 6px#bce4ff;height:20px;width:150px;margin:0 auto}.loading span{display:block;text-transform:uppercase;position:absolute;right:30px;height:20px;width:400px;line-height:20px}.loading span:after{content:"";display:block;position:absolute;top:-2px;right:-21px;height:20px;width:16px;background:#eaf7ff;-moz-box-shadow:0 0 15px#bce4ff;-webkit-box-shadow:0 0 15px#bce4ff;box-shadow:0 0 15px#bce4ff;-moz-animation:blink 3.4s infinite;-webkit-animation:blink 3.4s infinite;animation:blink 3.4s infinite}.loading span.title{-moz-animation:title 3.4s linear infinite;-webkit-animation:title 3.4s linear infinite;animation:title 3.4s linear infinite}.loading span.text{-moz-animation:title 3.4s linear 1.7s infinite;-webkit-animation:title 3.4s linear 1.7s infinite;animation:title 3.4s linear 1.7s infinite;opacity:0}</style>

Demo 3 


<div id='loader'>
<div class='preload-juggle'>
  <div class='ball'></div>
  <div class='ball'></div>
  <div class='ball'></div>
</div>
</div>
<script src='//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js'/>
    <script type='text/javascript'>
        $(window).load(function () {
            setTimeout(function () {
                $(&quot;.preload-juggle&quot;).fadeOut(&quot;slow&quot;);
                setTimeout(function () {
                    $(&quot;#loader&quot;).fadeOut(&quot;slow&quot;)
                }, 1000)
            }, 1000)
        });
    </script>
<style>
#loader {position: fixed;top: 0;left: 0;right: 0;bottom: 0;background: #16A085;z-index: 1000}
.preload-juggle {width: 300px;height: 300px;position: absolute;top: 50%;margin-top: -150px;left: 50%;margin-left: -150px;}
.preload-juggle div {position: absolute;width: 21px;height: 21px;border-radius: 10.5px;background: #1BBC9B;margin-top: 150px;margin-left: 150px;animation: juggle 2.1s linear infinite;}
.preload-juggle div:nth-child(1) {animation-delay: -0.7s;}
.preload-juggle div:nth-child(2) {animation-delay: -1.4s;}
@keyframes juggle {
0% {transform: translateX(0px) translateY(0px);}
12.5% {transform: translateX(25px) translateY(-55px) scale(1.1);background: #36D7B7;}
25% {transform: translateX(50px) translateY(0px);animation-timing-function: ease-out;  }
37.5% {transform: translateX(25px) translateY(55px);}
50% {transform: translateX(0px) translateY(0px);}
62.5% {transform: translateX(-25px) translateY(-55px) scale(1.1);animation-timing-function: ease-in; }
 75% {transform: translateX(-50px) translateY(0px);animation-timing-function: ease-out;}
87.5% {transform: translateX(-25px) translateY(55px); }
100% {transform: translateX(0px) translateY(0px);}
}
</style>

Demo 4


<div id='loader'>
<div class="spinner"></div>
    </div>
<script src='//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js'/>
    <script type='text/javascript'>
        $(window).load(function () {
            setTimeout(function () {
                $(&quot;.spinner&quot;).fadeOut(&quot;slow&quot;);
                setTimeout(function () {
                    $(&quot;#loader&quot;).fadeOut(&quot;slow&quot;)
                }, 1000)
            }, 1000)
        });
    </script>
<style>#loader{position:fixed;top:0;left:0;right:0;bottom:0;background:radial-gradient(#1f3a47,#0b1114);z-index:1000}.spinner{position:relative;margin:180px auto auto;box-sizing:border-box;background-clip:padding-box;width:200px;height:200px;border-radius:100px;border:4px solid rgba(255,255,255,0.1);-webkit-mask:linear-gradient(rgba(0,0,0,0.1),black 90%);transform-origin:50%60%;transform:perspective(200px)rotateX(66deg);animation:spinner-wiggle 1.2s infinite}@keyframes spinner-wiggle{30%{transform:perspective(200px)rotateX(66deg)}40%{transform:perspective(200px)rotateX(65deg)}50%{transform:perspective(200px)rotateX(68deg)}60%{transform:perspective(200px)rotateX(64deg)}}.spinner:before,.spinner:after{content:"";position:absolute;margin:-4px;box-sizing:inherit;width:inherit;height:inherit;border-radius:inherit;opacity:.05;border:inherit;border-color:transparent;animation:spinner-spin 1.2s cubic-bezier(0.6,0.2,0,0.8)infinite,spinner-fade 1.2s linear infinite}.spinner:before{border-top-color:#66e5ff}.spinner:after{border-top-color:#f0db75;animation-delay:0.3s}@keyframes spinner-spin{100%{transform:rotate(360deg)}}@keyframes spinner-fade{20%{opacity:.1}40%{opacity:1}60%{opacity:.1}}</style>

Demo 5 


 <div id='loader'>
<div class='balls'></div>
<div class='balls'></div>
<div class='balls'></div>
<div class='balls'></div>
</div>
<script src='//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js'/>
    <script type='text/javascript'>
        $(window).load(function () {
            setTimeout(function () {
                $(&quot;.balls&quot;).fadeOut(&quot;slow&quot;);
                setTimeout(function () {
                    $(&quot;#loader&quot;).fadeOut(&quot;slow&quot;)
                }, 1000)
            }, 1000)
        });
    </script>
<style>#loader{position:fixed;top:0;left:0;right:0;bottom:0;background:#22475E;z-index:1000}.balls{width:30px;height:30px;position:absolute;background-color:#ccc;top:45%;border-radius:50%}.balls:nth-child(1){background-color:#FF5460;animation:move 2s infinite cubic-bezier(.2,.64,.81,.23)}.balls:nth-child(2){background-color:#FF9D84;animation:move 2s 150ms infinite cubic-bezier(.2,.64,.81,.23)}.balls:nth-child(3){background-color:#F0E797;animation:move 2s 300ms infinite cubic-bezier(.2,.64,.81,.23)}.balls:nth-child(4){background-color:#75B08A;animation:move 2s 450ms infinite cubic-bezier(.2,.64,.81,.23)}@keyframes move{0%{left:0%}100%{left:100%}}</style>

Add anyof the above code just below the tag <body> and save the template. After that you would see the loading effect in your blog everytime before the homepage loads.

Thursday, June 19, 2014

Killer Tips To Drive Traffic From Pinterest To Your Blog

One of the most common problems faced by the bloggers today is generating traffic towards their blog. Most of them are not able to achieve their goals even after adopting several techniques to generate traffic towards their blog. Though most of them focus on the social media platforms like facebook, Twitter etc., there are few who use Pinterest for obtaining their goals. Pinterest has emerged out as one of the best traffic boosting sites and knowing some effective techniques will help you to a great deal in bringing your blog to number one position. You can easily derive traffic from Pinterest if you know the key tips and tricks.

pinterest-traffic_boost

Read: Killer Method To Market Your Blog
          Awesome 8 Tips To Get More Traffic To Your Blog

Here are some killer tips that will help you in driving traffic from Pinterest to your blog

.

Select some specific blog posts

The key to getting traffic towards your blog is not just pinning any of the images or other posts. In spite of pinning the posts randomly, it would be better if you do a research beforehand and select the posts that are related to your area of interest. This will help you in evaluating the fact that there is any audience for the niche you are dealing in or not. If you find a good audience on some of the posts start pinning them as there is a great probability that the followers of that particular post will pin your blog and as a result generate traffic to your site.

Create an attractive profile-

Create a profile that perfectly states your area of interest. Make sure that you put a tag line or message on your board and have some followers in the same area. An attractive profile and a good number of followers will help you in getting more followers which in turn can be a good sign for directing traffic from Pinterest to your blog.

Update attracting and high quality pictures

Make sure that you take high quality pictures of the related products or services and update them regularly on your account. Also add a brief description and use the Meta keywords which probably enhance the visibility of your post on search engines. Following the SEO techniques on Pinterest will be of great help in appearing on the top notch positions on Google and other search engines.

Conduct a contest

Hosting a contest is one of the best ways to grab the attention of the readers and boost the traffic. During such contests, the participants either pin the content of your website or they repin the already existing pins. Creating backlinks is also an effective way to drive traffic towards your blog.
So, these are some tested methods of driving traffic from Pinterest to your blog. Make sure you make use of catchy titles and description and use the optimized keywords so that your posts and updates can easily be listed on the search engine rankings. Generating traffic is no more a problem if you know the techniques to use this powerful social media platform.

Monday, May 19, 2014

Clean Social Subscribe Widget for Blogger

Hello Readers, I am again back after a long break. This time I present you the extremely elegant social subscribe widget which you can add in the footer of your blogger blog posts. This widget showcased Facebook, Twitter and Feedburner integration.

This widget has been optimized for blogs with smaller width too and looks perfect on all blogs. The widget uses Jquery, CSS and HTML for its working.

You can see the live demo of this widget below itself. Make sure to check the like button if it works and give us some likes for our Facebook Page.





Once you have seen the demo, to add this widget in your blogger blog you need to follow these simple steps -

Adding the code


First and foremost you need to add the code. First go to Blog Title ? Template ? Edit HTML. Press Ctrl. + F and search for <data:post.body/> code in your template and paste the below given code just below <data:post.body/>.

NOTE : There maybe more than one (usually 2-4) <data:post.body/> so make sure that you have selected the right one. If the widget does not appear try changing the location of code.

<section class="newsletter">
<h2>
Tired of checking for new posts ?
</h2>
<div id="form-newsletter">
<div class="social facebook">
<a href="https://www.facebook.com/AllBloggerTricks" target="_blank">
      <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgqUyYlhRw4rkA5UwtmpP9VrBPowPedYhIzs3G5s4T7ZtU3vCBHG3CqdlU39zL6liEzhE2KvKaAiJAIKg2mBL4mGySIesVmyrT2Td8qg4A1kHb39tuuTKoaoNjxtJKCBZ8LnZ5PsJiXJHzN/s1600/nl-facebook@2x.png" />
    </a>
    <iframe allowtransparency="true" class="social-box fb-like" frameborder="0" scrolling="no" src="//www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2FAllBloggerTricks&amp;width=90&amp;height=21&amp;colorscheme=light&amp;layout=button_count&amp;action=like&amp;show_faces=false&amp;send=false&amp;appId=519648428126767&amp;locale=en_US" style="border: none; height: 21px; overflow: hidden; width: 90px;">
    </iframe>
  </div>
<div class="social twitter">
<a href="https://twitter.com/AllBloggerTrick" target="_blank">
      <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNo-X-8xDPsWV7GXpVn01zDnzVCP4dx1lyuVDwITCpI7-TIaay5x_d4p4mjthutO2MtHshd1tXq6T3WFDmp92rS3ta2EG1uwEhzGwGDvgatdWTtHX3QyNnIxzCkll9nZ2k2ekNBmfwAMRI/s1600/nl-twitter@2x.png" />
    </a>
    <iframe allowtransparency="true" class="social-box twitter-follow-button twitter-follow-button" data-twttr-rendered="true" frameborder="0" id="twitter-widget-0" scrolling="no" src="http://platform.twitter.com/widgets/follow_button.1399599786.html#_=1399785529920&amp;id=twitter-widget-0&amp;lang=en&amp;screen_name=AllBloggerTrick&amp;show_count=false&amp;show_screen_name=false&amp;size=m" style="height: 20px; width: 60px;" title="Twitter Follow Button">
    </iframe>
    <script>
      !function(d,s,id){
        var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?&#39;http&#39;:&#39;https&#39;;
        if(!d.getElementById(id)){
          js=d.createElement(s);
          js.id=id;
          js.src=p+&#39;://platform.twitter.com/widgets.js&#39;;fjs.parentNode.insertBefore(js,fjs);}}(document, &#39;script&#39;, &#39;twitter-wjs&#39;);
    </script>
  </div>
<div class="newsletter-form">
<fieldset>
<h2>
       Get all posts directly in your mail.
      </h2>
<div class="fields">
<form action="http://feedburner.google.com/fb/a/mailverify" method="post" onsubmit="window.openundefined'http://feedburner.google.com/fb/a/mailverify?uri=AllBloggerTricks', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true" target="popupwindow">
<input class="email" id="email" name="email" onblur="ifundefinedthis.value=='')this.value=this.defaultValue;" onfocus="ifundefinedthis.value==this.defaultValue)this.value='';" type="text" value="Enter Your Email here.." />
          <input name="uri" type="hidden" value="AllBloggerTricks" />
          <input name="loc" type="hidden" value="en_US" />
          <input class="subscribe" name="commit" type="submit" value="Subscribe" />
        </form>
</div>
</fieldset>
</div>
</div>
</section>
<style>
.newsletter{text-align:center;margin:20px 0;}
.newsletter .social.facebook{background:none repeat scroll 0 0 #3661A0}
.newsletter .social{padding-top:20%;width:20%;float:left;position:relative}
.newsletter #form-newsletter{display:block;width:90%;max-width:900px;min-width:500px;margin:0 auto}
.newsletter:before,.newsletter:after{content:&quot; &quot;;display:table}
.newsletter:after{clear:both}
.newsletter h2{color:#3B434D;font-family:Open Sans,sans-serif;font-size:1.5em;font-weight:300;width:65%;margin:1em auto}
.newsletter .social.twitter{background:none repeat scroll 0 0 #00ACED}
.newsletter .social a{display:block;left:30%;position:absolute;top:20%;width:40%}
.newsletter .social a img{max-width:100%;width:100%;transition: transform 0.3s ease-out 0s}
.newsletter .social a:hover img{transform:scale(1.1)}
.newsletter .social .social-box{bottom:20px;left:50%;position:absolute}
.newsletter .social .social-box.fb-like{margin-left:-45px}
.newsletter .social .social-box.twitter-follow-button{margin-left:-30px}
.newsletter .newsletter-form{background:none repeat scroll 0 0 #1E293B;float:left;padding-top:20%;position:relative;width:60%}
.newsletter .newsletter-form fieldset{height:38px;left:10%;position:absolute;top:10%;width:80%;border:none}
.newsletter .newsletter-form fieldset h2{color:#FFF;font-family:Open Sans, sans-serif;font-weight:300;width:100%;margin:0 0 1.5625em;font-size:16px;}
.newsletter .newsletter-form fieldset .fields{position:relative}
.fields .email{border-radius:10px 0 0 10px;outline:0 none;width:84%;border:0;left:0;position:absolute;padding:10.5px}
.fields .subscribe{background:none repeat scroll 0 0 #F0553B;border:medium none;border-radius:0 10px 10px 0;color:#FFF;right:0;position:absolute;padding:10px;transition:all ease 0.6s;}
.fields .subscribe:hover {background: none repeat scroll 0 0 #161616;}
</style>
<script type="text/JavaScript">
fontsize = function () {
    var abtSubs = $(".newsletter #form-newsletter").width() * 0.025; // 10% of container width
    $(".newsletter .newsletter-form fieldset h2").css('font-size', abtSubs);
};
$(window).resize(fontsize);
$(document).ready(fontsize);
</script>

Editing the Code


After adding the above given code, you need to make some necessary changes for changing the user IDs. In the above code I have made 6 words in bold and blue, you need to change them as required.
The first two are for Facebook Username, the third and fourth for Twitter handle and the last two are for Feedburner ID. After making these changes you just need to Save your Template.

Thats it, the clean social subscribe widget on your blogger blog is live and ready to attract your users. Cheers!