Whats up guys, Here we discuss about the new technologies, useful software, blogging techniques and some ways to earn money online.

Showing posts with label Blogging Tips. Show all posts
Showing posts with label Blogging Tips. Show all posts

21 June 2016

Why you shouldn't use external Templates in blogger?

Whats up Guys,
All the steps are given with Images
Why you shouldn't use external Templates in blogger? Build new one up from its own basic templates.
  It's not big but informative. Just get back to your seat and relax guys. Many newly arrived peoples are made a big mistake in this matter and upcoming bloggers also will do this. They choose attractive XML templates from external sites. Now, What is the worse because of this? There is a proverb too, Beautiful is also Dangerous too.
  Customization has a main contribution in maintenance of a blog. You might already have experienced that, It is necessary to customize and modify your blog often as your needs and to reach more viewers. It is very hard to think, if you can't customize your blog for some needs after you did many more with this. Basement should be made very very correctly for everything. Are you with me?
  Another bad thing is images linked with the templates also may be gone if its host stops hosting. After that you sites' whole decorations also will be crashed. How will you feel then? It is not search engine friendly too. I don't know how. But it is true. It may be because of its size. Some options in template customize aren't work for the external templates including its layout length. There are many options won't work for them. You have to edit them via coding which may blow your entire template.
So, What is the easy way to go?
  Build your own template from basic templates offered by Google blogger. You may also better to select dynamics templates from blogger by its default. It is very easy to make a unique template and possible to create more than billion of them. Just follow these simple steps to go.
  • Choose any of the template available by default in blogger from lists Simple, Picture Window, Awesome Inc., Watermark, Ethereal, Travel.

  • Go to Customize button in orange color in Templates (See Picture).
  • Now you will see blogger's template editor interface. It is able to switch to the default template here also. Jump to Background tab in the left top corner. Set any background you want preloaded designs or upload your own picture. If you want plain background, leave it to none. Select a color theme. Its color pattern going to be changed in following step. Select any your favor.

  • Then jump to layout tab. Don't adjust its widths before this step which will be useless after chose another layout. Then Select anyone for main layout and footer layout suit to you.

  • Go to Adjust Width tab. Adjust side and main wrap width of your template. All changes are shown instantly below the settings.

  • Go to Advanced tab and Customize everything there as your needs. You can change texts' font, color, size etc to Page text, title, links etc individually. 

  •  Click on Apply to Blog and Hit Back to Blogger.

  • Go to the Layout tab from list in left. Adjust all of your gadgets' position including Header and Menu/ Pages. You can use Labels gadget instead for Menu/ Pages. You can insert your own HTML or Script here. For decent blog, hide/ off navigation bar and set your own Favicon. Try Google Adsense which is to earn some money from your blog impressions and ads click.

  That's all guys. You have got a impressive and smart template which is only in your blog. Don't forget to share, like or plus, tweet our site. Thanks again for your arrival.

Tags: Blogging, Blogger, Blogging Tips, blogger templates, customize template, create blogger template.
If you like our Articles Collection Please Like or Plus or Share. It will helpful to improve our site. You can also subscribe with your email to get instance updates from our site.
Thanks for your visit, Subscribe with us to get updates immediately to your inbox : Contents : Whats up Here

15 June 2016

Add a Popup Box with Close Button to a Your Blog : Direct Popup HTML script code

   There are many needs for a popup box to your blog. Many purposes such as show floating ads, convince visitor to subscribe or get shares and like to your site, show survey forms to get facts and comments from user, show your certain product to sell. You may need to show them while site loading or in a click and hide with another button click.'
   I explain about editing a sample code to build up all types of popup boxes. It is able you to customize all the things in the popup box after you read this. Let begins to topic,
   First know about the CSS style code Which is used to shine up your popup box. Style sheets are used to change your plain HTML into a shiny site.
   Every tag after # carries style for its own objects defined in HTML. Period or full stop “.” also can be used instead of the hash #.
#Object1_Name{ Here the styles are defined for object1. You could modify everything here to change style for the certain object1 }

#backgroundPopup
{
Popup will be shown in fixed position and visitor cannot access content in your blog which will be shaded, for the code given here by default. If you want a popup code which move along the site while all the content are active, Modify code in this tag by removing “display:none;” and changing “position” to static. }

#popupContact{ You can adjust font size, border, background color etc here. You can also change the width and height. But You must set a certain value other than percentages for those.}

#popupContactClose{ You can change properties and position of its close button here.}

#Content{ it’s able to customize characteristic of text entered in the div Content tag here.}

   You can also able to add more styles and divisions for the styles with same tag id. This style code strip should be added into your blog HTML just before the popup code in order to get good impression of the blog. It is also eligible to add this code combine with the popup code. However, I have given those codes separately to teach you full customization of popup box HTML. Some sample and edited ready made popup codes suit for some popular needs also been attached at last here. First you copy and edit the style code given below.

Style Section Code
<style>
#backgroundPopup{ display:none; position:fixed; _position:absolute; height:100%; width:100%; top:0; left:0;  background-color: transparent;  background:rgba(0, 0, 0, 0.5); z-index:999; }

#popupContact{ display:none; position:fixed; _position:absolute; height:500px; width:500px; background:#FFFFFF; border:4px solid #ddd; z-index:999; padding:8px; font-size:13px;}

#popupContactClose{ background:url
(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEih9qMMLSQAWLFQF8L6oDqVM4l7kqZnXu6Ukxfbt_LIDQlQPLsSTHyc9_7dXQrLoeDkh2sOfGjGTqi-SvNTVhsgUVKRken2TWEIMZSyZTFUnnmec3tXWd2ubGw-651GX96P7lzUAVc0HuU/s38-p/x-mark-button-md.png) no-repeat;    width:37px; height:37px; display:inline; z-index:3200; position:absolute; top:-15px;  right:-16px; cursor:pointer; text-indent: -99999px;}

#Content{ color: #AAAAAA; font-family: times New Roman; font-size: 25px; font-style: italic;     line-height:30px; }
</style>

   Let get into the HTML Section guys. It is the portion deciding how the objects in the popup should be arranged.

<div id="*****"> the stars (*****) in the id are the tags set in the CSS style code. Style of every division is decided by its corresponding tag in the style sheet.

HTML Section Code
<div id="backgroundPopup">
<div id="popupContact">
<a id="popupContactClose">x</a>
<div id="Content"> Your Content Here </div>                    
</div>
</div>

   You should include all of your things’ code need to be show in popup just after <div id="Content"> tag.
<div id="Content"> Your Content here </div>
It is able to add any HTML, Script, iframes, ads etc in the “your content here” area. You have to be care about that every HTML tags are closed and enclosed properly inside of it. You should consider its view size if you set height and width for #popupContact and #backgroundpopup tags in CSS style code above to avoid content overlapping popup. That is all to say about HTML section. Let we move to the Script section.
   You can also open up another web URL when viewer close popup. Find <a id="popupContactClose">x</a> add this following code between a and id in it.
href="Your WEB URL Here"
   In Script section, there are not much things to learn. First you know how the popup showing system works. Popup will be shown only once and never again for few days after closed by a user. You could modify this code to show popup all the time when page reloaded by the user. It uses cookies to avoid show again after you close it. You can customize that how many days should be taken to show it again to the user for subscription requests. Find { expires: 7 } in script and change the days 7 into anything you want. It is twice in it code, the second used to close popup with escape key on keyboard. Change in both places. If you want to show popup for every page reloading, find this code popupStatus = 0; and change the 0 into 1.

Script Section Code
<script src="http://yourjavascript.com/24315621361/jquery.cookie.js" type="text/javascript">

</script>
<script type="text/javascript">
 var popupStatus = 0;

//this code will load popup with jQuery magic!
 function loadPopup(){

//loads popup only if it is disabled
 if(popupStatus==0){
 $("#backgroundPopup").fadeIn("slow");
 $("#popupContact").fadeIn("slow");
 popupStatus = 1;
}
}

//This code will disable popup when click on x!
function disablePopup(){

 //disables popup only if it is enabled
 if(popupStatus==1){
 $("#backgroundPopup").fadeOut("slow");
 $("#popupContact").fadeOut("slow");
 popupStatus = 0;
 }
}

//this code will center popup
function centerPopup(){

 //request data for centering
 var windowWidth = document.documentElement.clientWidth;
 var windowHeight = document.documentElement.clientHeight;
 var popupHeight = $("#popupContact").height();
 var popupWidth = $("#popupContact").width();

 //centering
 $("#popupContact").css({
 "position": "absolute",
 "top": windowHeight/2-popupHeight/2,
 "left": windowWidth/2-popupWidth/2
 });

 //only need force for IE6
 $("#backgroundPopup").css({
 "height": windowHeight
 });
}

//CONTROLLING EVENTS IN jQuery
$(document).ready(function(){
 if ($.cookie("anewsletter") != 1) {

 //centering with css
 centerPopup();

 //load popup
 loadPopup();
 }  

 //CLOSING POPUP
 //Click the x event!
 $("#popupContactClose").click(function(){
 disablePopup();
 $.cookie("anewsletter", "1", { expires: 7 });
 });

 //Press Escape event!
 $(document).keypress(function(e){
 if(e.keyCode==27 && popupStatus==1){
 disablePopup();
 $.cookie("anewsletter", "1", { expires: 7 });
 }
 });
});
</script>
  
You can also set to show it once for every sub URLs or pages in your site. Find tag <script type="text/javascript"> and add var url1=window.location.href; just after that. Find all the three “anewsletter” and replace it with url1 without any quotes. You have done. It can be used for to show share or like popups in every pages in your blog.

Positioning your popup

The code given below will center your popup. If you want to show it in your favor position, remove code between //request data for centering and //centering. Then give your top and left coordinates in pixels(px) in //centering section.

 //this code will center popup
function centerPopup(){
 //request data for centering
 var windowWidth = document.documentElement.clientWidth;
 var windowHeight = document.documentElement.clientHeight;
 var popupHeight = $("#popupContact").height();
 var popupWidth = $("#popupContact").width();
 //centering
 $("#popupContact").css({
 "position": "absolute",
 "top": windowHeight/2-popupHeight/2,
 "left": windowWidth/2-popupWidth/2
 });
 //only need force for IE6
 $("#backgroundPopup").css({
 "height": windowHeight
 });
}
#Content{ color: #AAAAAA; font-family: times New Roman; font-size: 25px; font-style: italic;     line-height:30px; }
</style>

Some Sample Popup HTML Scripts Codes

1.Feedback Subscription Popup Box HTML Script code:
 <style>
#backgroundPopup
{ display:none; position:fixed; _position:absolute;
/* hack for internet explorer 6*/
height:100%; width:100%; top:0;
left:0; background-color: transparent;    
background:rgba(0, 0, 0, 0.5);z-index:999; }
#popupContact{ display:none;
position:fixed; _position:absolute;
/* hack for internet explorer 6*/ height:500px; width:500px; background:#FFFFFF;
border:4px solid #ddd; z-index:999;
padding:8px; font-size:13px; }
#popupContactClose{    background:url
(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEih9qMMLSQAWLFQF8L6oDqVM4l7kqZnXu6Ukxfbt_LIDQlQPLsSTHyc9_7dXQrLoeDkh2sOfGjGTqi-SvNTVhsgUVKRken2TWEIMZSyZTFUnnmec3tXWd2ubGw-651GX96P7lzUAVc0HuU/s38-p/x-mark-button-md.png)
no-repeat;    width:37px;    height:37px;    display:inline;    z-index:3200;    position:absolute;    top:-15px;    right:-16px;    cursor:pointer;    text-indent: -99999px;}
#Content {    color: #AAAAAA;    font-family: times New Roman;    font-size: 25px;    font-style: italic;    line-height:30px; }
#insideimg {    float: left;    height: 80px;    padding: 0 25px 0 10px;    width: 80px; }
#btntfollowForm {  padding: 15px; }
#btntfollowForm img {  border:none; }
#btntfollowForm p {  margin: 0 0 10px;}
#btntfollowForm input:not([type="checkbox"]){ width: 93%; margin-top: 10px;        margin-bottom: 20px; padding: 10px 5px 10px 25px;  border: 1px solid rgb(178, 178, 178); -webkit-appearance: textfield; -webkit-box-sizing: content-box;   -moz-box-sizing : content-box;       box-sizing : content-box; -webkit-border-radius: 3px;    -moz-border-radius: 3px;         border-radius: 3px; -webkit-box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.6) inset;    -moz-box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.6) inset;         box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.6) inset; -webkit-transition: all 0.2s linear;    -moz-transition: all 0.2s linear;      -o-transition: all 0.2s linear;   transition: all 0.2s linear; }
#btntfollowForm input:not([type="checkbox"]):active,
#btntfollowForm input:not([type="checkbox"]):focus{ border: 1px solid rgba(91, 90, 90, 0.7); background: rgba(238, 236, 240, 0.2); -webkit-box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.9) inset;    -moz-box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.9) inset;         box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.9) inset;}
#btntfollowForm .button input{    background: none repeat scroll 0 0 #3D9DB3;    border: 1px solid #1C6C7A;    border-radius: 3px 3px 3px 3px;    box-shadow: 0 1px 6px 4px rgba(0, 0, 0, 0.07) inset, 0 0 0 3px #FEFEFE, 0 5px 3px 3px #D2D2D2;    color: #FFFFFF;    cursor: pointer;    font-family: 'Arial Narrow',Arial,sans-serif;    font-size: 24px;    margin-bottom: 10px;    padding: 8px 5px;    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);    width: 30%;    float: right; }
#btntfollowForm .button input:hover{    background: #4ab3c6; text-decoration: none; }
#btntfollowForm .button input:active,
#btntfollowForm .button input:focus{ background: rgb(40, 137, 154); position: relative; top: 1px; border: 1px solid rgb(12, 76, 87);   -webkit-box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.2) inset;    -moz-box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.2) inset;         box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.2) inset; }
#btntFollowFooter {  color:#222;  text-align: center;    font: 10px Tahoma, Helvetica, Arial, Sans-Serif;    padding: 7px 0;    margin-top: 80px;    text-shadow: 0px 2px 3px #555;    position: absolute;    width: 500px; }
#btntFollowFooter a {    color: #222;    text-decoration: none; }
#btntFollowFooter a:hover {    color: #fff; }
<!--[if lt IE 7]>
#btnt-container a.btntCloseImg {    background:none;    right:-14px;    width:22px;    height:26px;     filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEih9qMMLSQAWLFQF8L6oDqVM4l7kqZnXu6Ukxfbt_LIDQlQPLsSTHyc9_7dXQrLoeDkh2sOfGjGTqi-SvNTVhsgUVKRken2TWEIMZSyZTFUnnmec3tXWd2ubGw-651GX96P7lzUAVc0HuU/s38-p/x-mark-button-md.png',sizingMethod='scale'); }
#btntfollowForm  input{ padding: 10px 5px 10px 32px;    width: 93%; }
#btntfollowForm  input[type=checkbox]{ width: 10px; padding: 0;}
<![endif]-->
</style>

<div id="backgroundPopup">
<div id="popupContact">
<a id="popupContactClose">x</a><br />
<div id="btntfollowForm">
<center>

<img alt="email" border="0" src="https://lh3.googleusercontent.com/-
qaaiWPDGTtM/VAlBpbH0_5I/AAAAAAAAAfs/eSK0mQYj3YY/s200-no/feed.png" />
</center>
<div id="Content">
Subscribe to our mailing list to get the
updates to your email inbox...</div>
<form action="http://feedburner.google.com/fb/a/mailverify" method="post" onsubmit="window.open 'http://feedburner.google.com/fb/a/mailverify?uri='Your Feedburner Name here', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true" target="popupwindow">
<input name="email" placeholder="Enter Your Email..." required="required" type="text" /><input name="uri"
type="hidden" value="Your Feedburner Name here" /><input name="loc" type="hidden" value="en_US" /><br /><div>
<input type="submit" value="Subscribe" /></div>
</form>
</div><div>
Delivered by <a href="http://feedburner.google.com/" target="_blank">FeedBurner</a></div>
</div>
</div>

<script src="http://yourjavascript.com/24315621361/jquery.cookie.js" type="text/javascript">

</script>
<script type="text/javascript">
 var popupStatus = 0;

//this code will load popup with jQuery magic!
 function loadPopup(){

//loads popup only if it is disabled
 if(popupStatus==0){
 $("#backgroundPopup").fadeIn("slow");
 $("#popupContact").fadeIn("slow");
 popupStatus = 1;}}

//This code will disable popup when click on x!
function disablePopup(){

 //disables popup only if it is enabled
 if(popupStatus==1){
 $("#backgroundPopup").fadeOut("slow");
 $("#popupContact").fadeOut("slow");
 popupStatus = 0; }}

//this code will center popup
function centerPopup(){

 //request data for centering
 var windowWidth = document.documentElement.clientWidth;
 var windowHeight = document.documentElement.clientHeight;
 var popupHeight = $("#popupContact").height();
 var popupWidth = $("#popupContact").width();

 //centering
 $("#popupContact").css({
 "position": "absolute",
 "top": windowHeight/2-popupHeight/2,
 "left": windowWidth/2-popupWidth/2
 });

 //only need force for IE6
 $("#backgroundPopup").css({
 "height": windowHeight
 });}

//CONTROLLING EVENTS IN jQuery
$(document).ready(function(){
 if ($.cookie("anewsletter") != 1) {

 //centering with css
 centerPopup();

 //load popup
 loadPopup();
 }  

 //CLOSING POPUP
 //Click the x event!
 $("#popupContactClose").click(function(){
 disablePopup();
 $.cookie("anewsletter", "1", { expires: 7 });
 });

 //Press Escape event!
 $(document).keypress(function(e){
 if(e.keyCode==27 && popupStatus==1){
 disablePopup();
 $.cookie("anewsletter", "1", { expires: 7 });
 }
 });
});
</script>

2.Social Share box float right all the time : Floating Script.
   You Should add this code after <body> tag to show G+ button.
<script src="https://apis.google.com/js/platform.js" async defer></script>
<style>
#Popupcontact
{ height:274px; width:52px; margin:0auto; position:fixed; _position:absolute;
border:3px solid #ccc; top:230px; right:0.5px; padding:5px;}
#glike{position:relative; top:2px; }
#Gplus{ position:relative; top:0px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhT8o4yIwcDquLGDQdm4PCFrb6czrhK8uAS2HzijB_wZfK5jtQQfxhDFLqoVrUYtYWwMcUzDbA1e2DSu6cuReUD6hWgpJeEA61zQuWBO90EtFr5TO87cNbK3D4_rVFC1fIldBDw0SXBfI_x/s50-no/) no-repeat;  width:50px; height:50px; display:inherit;}
#fbshare{ position:relative; top:-14px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhiezleUvWb7A_DjF0kOXD7Dwtq3OkGMPDDpa58hwoYxGeJhf1-28a8eqGHMXfsJJcm8ygUaI4VbChDalqSbTrbac5GQlJJFKL5AUh7IZZpwsJ6MWGK1TbNgqw4n86SE3A5OWIZiWTkj87A/s50-no/) no-repeat;  width:50px; height:50px; display:inherit;}
#twit{position:relative; top:-34px; background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi1ASFKQy1TlvTMTwZQ1jueoXt0Nh4_H0SPgM59dj2XTm-XwSqKvnBv9xaEY9VBZjk_RJflG7woeXE9KTEu0_X6cE5juO7OyuWG3W_TE0IkDuMFG1A5xQiSvI0n5MsYpxT5-c-dntJhgq4h/s50-no/) no-repeat;  width:50px; height:50px; display:inherit;}
#linkin{position:relative; top:-52px; background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjZcpbzFcpAB4O5zMCtEyToo9q6e29QtglpKshta8FvTiY3BHm6rPcrlVlDdGedXTT6XIs49Xx-Rbi2qsjm6aI6ynFLkCxKFKIkl8JQkbcqdEwfZ1MT164ZxAS1vlbTUdeH4SjHNom0PznV/s50-no/) no-repeat;  width:50px; height:50px; display:inherit;}
</style>
<div id="Popupcontact">
<center>
<!-- Place this tag where you want the +1 button to render. -->
<div id="glike" class="g-plusone"  data-size="tall"></div><br />
<a href="https://plus.google.com/share?url=" id="Gplus"></a><br/>
<a href="https://www.facebook.com/sharer/sharer.php?u=" target="_blank" id="fbshare"></a><br />

<a id="twit" href="https://twitter.com/share" class="twitter-share-button"></a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';</script>
<br>
<a href="https://www.linkedin.com/shareArticle?mini=true&url=" id="linkin" ></a>
</div></center>
<script>
var url1=window.location.href;
document.getElementById('fbshare').href += url1;
document.getElementById('Gplus').href += url1;
document.getElementById('linkin').href += (url1+"&title=&summary=&source=");
</script>

3.Facebook Share Request Popup Box HTML Script code (Big and Force to share):
<style>
#Popupcontact
{ height:272px; width:52px; margin:0auto; position:fixed; _position:absolute;
border:3px solid #ccc; top:230px; right:0.5px; padding:5px;}
#glike{position:fixed; top:2px; }
#Gplus{ position:relative; top:-3px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhT8o4yIwcDquLGDQdm4PCFrb6czrhK8uAS2HzijB_wZfK5jtQQfxhDFLqoVrUYtYWwMcUzDbA1e2DSu6cuReUD6hWgpJeEA61zQuWBO90EtFr5TO87cNbK3D4_rVFC1fIldBDw0SXBfI_x/s50-no/) no-repeat;  width:50px; height:50px; display:inherit;}
#fbshare{ position:relative; top:5; background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhiezleUvWb7A_DjF0kOXD7Dwtq3OkGMPDDpa58hwoYxGeJhf1-28a8eqGHMXfsJJcm8ygUaI4VbChDalqSbTrbac5GQlJJFKL5AUh7IZZpwsJ6MWGK1TbNgqw4n86SE3A5OWIZiWTkj87A/s50-no/) no-repeat;  width:50px; height:50px; display:inherit;}
#twit{position:relative; top:2px; background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi1ASFKQy1TlvTMTwZQ1jueoXt0Nh4_H0SPgM59dj2XTm-XwSqKvnBv9xaEY9VBZjk_RJflG7woeXE9KTEu0_X6cE5juO7OyuWG3W_TE0IkDuMFG1A5xQiSvI0n5MsYpxT5-c-dntJhgq4h/s50-no/) no-repeat;  width:50px; height:50px; display:inherit;}
#linkin{position:relative; top:5px; background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjZcpbzFcpAB4O5zMCtEyToo9q6e29QtglpKshta8FvTiY3BHm6rPcrlVlDdGedXTT6XIs49Xx-Rbi2qsjm6aI6ynFLkCxKFKIkl8JQkbcqdEwfZ1MT164ZxAS1vlbTUdeH4SjHNom0PznV/s50-no/) no-repeat;  width:50px; height:50px; display:inherit;}
</style>
<div id="Popupcontact">
<center>

<table>
<tr>
<div id="glike" class="g-plusone"  data-size="tall"></div>
</tr>
<tr>
<a href="https://plus.google.com/share?url=" id="Gplus"></a>
</tr>
<tr>
<a href="https://www.facebook.com/sharer/sharer.php?u=" target="_blank" id="fbshare"></a>
</tr>
<tr>
<a id="twit" href="https://twitter.com/share" class="twitter-share-button"></a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';</script>
</tr>
<tr>
<a href="https://www.linkedin.com/shareArticle?mini=true&url=" id="linkin" ></a>
</tr>
</table>
</center></div>
<script>
var url1=window.location.href;
document.getElementById('fbshare').href += url1;
document.getElementById('Gplus').href += url1;
document.getElementById('linkin').href += (url1+"&title=&summary=&source=");
</script>


4.Popup code to show Floating Ads for each view of your site pages first time.
<style>
#backgroundPopup1{ display:none; position:fixed; _position:absolute; height:100%; width:100%; top:0; left:0; background-color: transparent;       background:rgba(0, 0, 0, 0.5); z-index:999; }
#popupContact1{ display:none; position:fixed; _position:absolute;height:500px; width:500px; background:#FFFFFF; border:4px solid #ddd; z-index:999; padding:0px; font-size:13px; }
#popupContactClose1{ background:url(https://www.networkcapital.net/images/close_button.gif)   no-repeat;    width:37px;    height:37px;    display:inline;    z-index:3200;    position:absolute;    top:-15px;    right:-16px;    cursor:pointer;    text-indent: -99999px;}
#btntfollowForm1.button input{    background: none repeat scroll 0 0 #3D9DB3;    border: 1px solid #1C6C7A;    border-radius: 3px 3px 3px 3px;    box-shadow: 0 1px 6px 4px rgba(0, 0, 0, 0.07) inset, 0 0 0 3px #FEFEFE, 0 5px 3px 3px #D2D2D2;    color: #FFFFFF;    cursor: pointer;    font-family: 'Arial Narrow',Arial,sans-serif;    font-size: 24px;    margin-bottom: 10px;    padding: 8px 5px;    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);    width: 30%;    float: right; }
#btntfollowForm1.button input:hover{    background: #4ab3c6; text-decoration: none; }
#myword1{color: #AAAAAA;    font-family: times New Roman;    font-size: 25px;    font-style: italic;    line-height:30px; }
#btntfollowForm1.button input:active,
#btntfollowForm1.button input:focus{ background: rgb(40, 137, 154); position: relative; top: 1px; border: 1px solid rgb(12, 76, 87);   -webkit-box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.2) inset;    -moz-box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.2) inset;         box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.2) inset; }
.btntFollowFooter {  color:#222;  text-align: center;    font: 10px Tahoma, Helvetica, Arial, Sans-Serif;    padding: 7px 0;    margin-top: 80px;    text-shadow: 0px 2px 3px #555;    position: absolute;    width: 500px; }
.btntFollowFooter a {    color: #222;    text-decoration: none; }
.btntFollowFooter a:hover {    color: #fff; }
<!--[if lt IE 7]>
#btnt-container a1.btntCloseImg {    background:none;    right:-14px;    width:22px;    height:26px;     filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEih9qMMLSQAWLFQF8L6oDqVM4l7kqZnXu6Ukxfbt_LIDQlQPLsSTHyc9_7dXQrLoeDkh2sOfGjGTqi-SvNTVhsgUVKRken2TWEIMZSyZTFUnnmec3tXWd2ubGw-651GX96P7lzUAVc0HuU/s38-p/x-mark-button-md.png',sizingMethod='scale'); }
#btntfollowForm1  input{ padding: 10px 5px 10px 32px;    width: 93%; }
#btntfollowForm1  input[type=checkbox]{ width: 10px; padding: 0;}
<![endif]-->
</style>
<center>
<div id="backgroundPopup1">
<div id="popupContact1">
<div id="myword1">
<p>Your Text here</p>
</div>
<center>
Your ADS Here. Adjust the size of this popup.</center>

<a href="" target="_blank" id="popupContactClose1">
</a>
</div></div></center>

<script src="http://yourjavascript.com/24315621361/jquery.cookie.js" type="text/javascript">
</script>
<script type="text/javascript">
 var popupStatus1 = 0;
//this code will load popup with jQuery magic!
function loadPopup1(){
 //loads popup only if it is disabled
 if(popupStatus1==0){
 $("#backgroundPopup1").fadeIn("slow");
 $("#popupContact1").fadeIn("slow");
 popupStatus1 = 1;
 }
}

//This code will disable popup when click on x!
function disablePopup1(){
 //disables popup only if it is enabled
 if(popupStatus1==1){
 $("#backgroundPopup1").fadeOut();
 $("#popupContact1").fadeOut();
 popupStatus1 = 0;
 }
}

//this code will center popup
function centerPopup1(){
 //request data for centering
 var windowWidth1 = document.documentElement.clientWidth;
 var windowHeight1 = document.documentElement.clientHeight;
 var popupHeight1 = $("#popupContact1").height();
 var popupWidth1 = $("#popupContact1").width();
 //centering
 $("#popupContact1").css({
 "position": "absolute",
 "top": windowHeight1/2-popupHeight1/2,
 "left": windowWidth1/2-popupWidth1/2
 });
 //only need force for IE6
 $("#backgroundPopup1").css({
 "height": windowHeight1
 });

}
var url1=window.location.href;
//CONTROLLING EVENTS IN jQuery
$(document).ready(function(){
 if ($.cookie(url1) != 1) {
 //centering with css
 centerPopup1();
 //load popup
 loadPopup1();
 }    
 //CLOSING POPUP
 //Click the x event!
 $("#popupContactClose1").click(function(){
 disablePopup1();
 $.cookie(url1, "1", { expires: 100 });
 });
 });
</script>

If you have any doubts in this section, Don't hesitate to contact me via comments conversations and your feedback are also welcomed.
 
Tags: Blogging Tips, popup advertisement, popup box scripts, popup code, popup html script, popup script, popup with close button, social share popup, styles up html, Website creation

If you like our Articles Collection Please Like or Plus or Share. It will helpful to improve our site. You can also subscribe with your email to get instance updates from our site.
Thanks for your visit, Subscribe with us to get updates immediately to your inbox : Contents : Whats up Here

29 April 2016

How to set a custom domain to blogger? dot.com Website for Cheap With pretty much blogger platform

Whats up Guys,
For many purposes, its necessary to create your own website. Here, I show you how to create a custom domain website easily for cheap without any advance knowledge. Why do you need a hosting services for such small site for your business profile. Just sign in to Blogger.com with your existing google account. If you don't have any google account, just sign up within a seconds.
  1. In blogger logged in page, Click New Blog Button in top left corner.
  2. Enter your Website name in tittle. Enter any address in address blank- You have to  change this to custom .com domain. Choose any template-You can edit or change or upload later.
  3. Click "Create blog!" Button.
Now you have a blog with YourBlog.blogspot.com domain. You can create and maintain the blog easily without any advance knowledge. Every thing in the blogger are easy to understand. Just click to customize and create post and pages there. Now we come to the topic, How to Change your domain to .com domain?

You need to buy a domain first to do the setup. Godaddy gives .com domain and other domains from just 0.99$. You can also buy from google.com or any domain service Providers. Try Google Domain for Trustworthy and facilities or for cheap try Godaddy.

I explain here, how to setup custom domain in Godaddy Domain Provider. All other domain providers also provide with the similar settings.
  1. First you login to your Godaddy account.
  2. Then open the Domains tab in the logged in page.
  3. Go to "My Domain Names".You will see Domain Manager page.
  4. Click the domain that you want to link with.
  5. click "Total DNS control and MX records" under "Total DNS" section At the bottom of the page. 
  6. Then click "Add New CNAME Record". If you have created a CNAME record before, click the pencil icon near existing CNAME record.
  7. For Name, enter your subdomain.For eg: if your address is www.mydomain.com, enter www.
  8. in the "Host name".
  9. Then enter <Type Your Domain Here>.ghs.googlehosted.com. Specify a TTL or use 1 hour.
  10. Click OK.
  11. Under "CNAMES" Section,  click "Add New CNAME Record" again.
  12. Under "Name" section, enter the short security token.
  13. Under "Host name" section, Enter the long security token. Specify a TTL or Use 1 hour.
  14. Click OK.
You are Almost Done here.

But You need to change some settings in blogger.com
  1. First you login to your blogger account.
  2. Go to your blog site settings.
  3. Under Basic> Publishing> Blog Address Section, Click "+ Setup a 3rd party URL for your blog".
  4. Type your Domain without WWW.
  5. Click Save.
That's OK. You need to wait about half an hour to see your blog at the custom domain. Now you have .com website with only charge for domain.

Tags: .com website, .com domain, create .com website, free domain, Google domain, Google custom domain, create own website, create a website, create website online

If you like our Articles Collection Please Like or Plus or Share. It will helpful to improve our site. You can also subscribe with your email to get instance updates from our site.
Thanks for your visit, Subscribe with us to get updates immediately to your inbox : Contents : Whats up Here

What should you do first, after starting a blog : Things to know before you create a blog : Blog SEO Tips

We are frequently trying to create a successful blog with huge traffic. Many times, we have gotten failure in it. You have to know some important things and tips to standing your blog to a standard level. I have listed them here. You should do them instant after you create a new blog.
1. Select suitable Theme:
  You may feel that, how SEO depends in theme. Search engines doesn't fetch content only. Its also save a cache copy of your pages. Low size pages will be SEO friendly. So, you should select simple and smart theme to your blog. Beautiful themes with lots of pictures are not suit for SEO. Pages should be loaded fast in browsers. In blog, every pages are fixed inside the theme. It is shown again and again with every posts and pages.
  Best is to select default simple theme inside blogger, and edit or customize them. They are small in size and contains low script; specially designed by blogger team, which are smart fit for blogger platform. It is not necessary to getting horse dressed for fast riding.

2. Delete unwanted Pre-loaded Gadgets in Layout section.
  When you create a blogger blog, Many gadgets are initially added in it. You have to remove some of them and set header with a longest picture as your wish. If you are new to blogging and add adsense gadget, until you approved by Google, no ads will be shown in your blog. Pre-loaded features won't likely to see by people.

3. Create a title with SEO friendly keyword.
  Medium size length titles are good for higher rankings. You should write articles related to the title. It means the title is the main keyword for your site. You should upload a banner to your site soon. Once your site has cached by search engines, It takes more time to redo the action again. So better is to make a title banner before you create the blog.


4. Add social like and share buttons.
  Search engines are not only ranking with the quality of your content and page. Their robots are watching you blog's comments,  follower and subscribers. If you get more followers, your blog will be ranked highly. For that, Its necessary to add them in after every posts and sidebars. Ask your relations and family members to comments in your post be first. It will lead else to comments under them. Number of comments with great information also play big role in SEO.


5. Add about me Gadget or Create an about me post.
  A lot of people are not ready to read articles and blog without about me details. They leave your site immediately, if they don't see that. There are many fakers on internet. They want to know who you are and how do you wrote about the title. And also for a standard website, its is necessary and increases your site ranking.

6. Research related to your niche keyword.
  You should research about your niche keyword. Niche keyword means main keyword of your site. Most of the time your blog title is the niche. You can use Google adwords keyword tool to find keywords related to your niche. You should make your future posts with the keywords. You should select reasonable long tail keywords with nearly 1000-9999 searching volume per month.

7. Turn blog view into casual view. 
  Navigation bar is being on in new blogs. Some readers are allergic to read blog views. You should turn off it under navbar, layout. Set main page and post page options in layout, blog posts. You may also change your site address into custom domain starting at 1.99$ per year.

8. Create a logo.
 It isn't very important and doesn't affect much in SEO. You can create a logo 100*100 size in Photoshop yourself. Otherwise, blogger default logo will be shown. Google image gallery is much enough to you. Change logo in Favicon under layout. Clear cookies or use another browser to see your changes.



9. Keep your site fresh and post regularly - Maintenance.
Maintenance is the long term step everywhere. All the contents put into your site should be fresh with your own mind. Don't add any copied content. It may makes your remains waste. Don't feel about errors and grammar mistakes, if English is second language to you. You need to fall before wake up.
If you like our Articles Collection Please Like or Plus or Share. It will helpful to improve our site. You can also subscribe with your email to get instance updates from our site.
Thanks for your visit, Subscribe with us to get updates immediately to your inbox.

21 November 2014

How to setup custom domain to a blog? ; blogger

How to convert a blog as website?

I come to the title directly. Various people are using various methods for this. Someone use forwarding index file method. But, its not bad. There are many disadvantages in such ideas. I choose the best setup methods to write here.

Method 1 - Best and easiest method can be done by everybody, even  beginners too.

1.Go to the blog's setting page first.
 2.Click "add a custom domain" button.
 3.Enter your new domain with "www." , click save and download DNS setting file there.
 4.Then come to DNS zone of domain at your domain provider dashboard. Click import file under more tap. select the the downloaded file and click upload button.
 5. That's all. Just wait 30mins and see your new web Address.
Congratulations!!! now you have a Web Site.

Method 2 - Long with basic steps and ideas.

1.Go to your blog's settings in another tap.
2.Click on "add a custom domain"/ "Setup a 3rd party URL for your blog" in your blog. Enter your domain with WWW.   and saveHow to convert a blog as website?.
3.Copy the detail given there.
4.Go to domain provider dashboard.
5.Go to domains under products tap or elsewhere.
6.Go to DNS zone of your new web Address.
7.Click edit button there, select current datas and delete them, save and go to the DNS zone then click edit button.
8.Add C Name and A Name records according to copied above at blogger. Save and confirm.
You are almost done. Now you should wait at least 30mins to see your blog under new Address. Old blog Address redirects you to the new one. So, you can't see your blog for a while.

What are the advantages from this setup?

 1. Your domain directly access to your blog, not redirect to your blog.
 2. All of blog links are converted into new Address automatically including achieves.
 3. Your blog looks like website, leads your site can become #1 in search engines. such as GOOGLE, Yahoo etc.
 4. and many more... enjoy your blog with .com domain for started at just 1.99 from Godaddy .
If you like us, Please Like or Plus or Share it. It will helpful to us. You can also subscribe with your email address to get instance updates.
Thanks for visiting!!! Come Again!!!

20 September 2014

New techniques to increase traffic?

   There are many ways available to boost traffic to websites and get bets rank in search engines. The best and easy to do that is get Facebook fans. You get two benefit from this way only. They are direct traffic from Facebook fans and search engine rank. Search engine rank is a great one to increase

5 Tips to get adsense approval in 2014 to your site with in two weeks

We many times try for a adsense approval to your site to earn some money for your extra uses. I recently know that, Some of adsense publishers use adsense income for their main purposes. I mean they live rich with the income only. But, Some of us can not get approval and get disapproved many times.Because of this, Some bodies hate adsense too. But they do not know what they need to get approval on adsense. Every time we submit for adsense, we disapproved. Why? there are some problems in your site. You need to correct them to get approval from adsense simply. These are the 5 tips to get adsense approval in 2012. Just follow these steps to get approved quickly and simply without much effort.
01.Your site should 6 months old. 
Many of ours site are new, But, we many time apply for adsense and get disapproved. To get approved on adsense, your site should 6 months old. First Google check domain that, The domain is registered in your name? The domain is 6 months old. If you passed this step, they check other quantities. Your site should at least 3 months old to pass this step. This is very important. Because, it is the first step to approval. If you fail in this, You automatically disapproved.
02.Your site should contain long words between 400-1000
 After your first step, Yours site checked by Google Robert (Google crawlers). In that time your site should have big content between 400 to 1000 words. It may increased. But not to make content low than this ratio. Because, Google policies not allow little content to adsense. Yours site get much traffic automatically with this. So you get two advantage. A proverb that "One stone, two mango". That is this. So if you take a tittle to make content, Search much about on that and write much on that topic. Do not waste your time on search tricks to get approval on adsense. Because, Google change Terms and Policies. Here is also a trick below. But, This trick is not like on other sites.

Simple trick to get  your adsense approval quickly 

Quote "Your site should 6 months old"

Because of this, You need to wait much time to get approval. There is no term to you that, your site should 6 or 3 months old. But, At least 20 pages of your site should cached by Google. There is a simple trick to get your adsense approval quickly. To check how many pages by Google, Search on Google "Site:Your Site Address". If 20 of your site's page cached, Then you can submit for adsense approval even your domain is new. Happy to search it and submit to adsense and get adsense approval quickly.

03.Yours site should have a "Privacy Policy" page Most reason to Google disapprove your application is this. You site should have a Privacy Policy page. Because, Google change Terms and Policy recently on 2012 February 1st. So, every time you submit your site for approval. Google check it after check your domain quality. If your site not contain "Privacy Policy" page, first add it to yours site. Contact us page is even best to increase approval chance. Therefore, add "Contact Us" page too to your site. Do not put another or pen name on it. Use original name on Contact Us page.

04.You should enter Address correctly in adsense application
Many of us, enter address incorrectly. Like to send a letter to another. It is wrong. You should enter with house number and Zip code. This is also a problem to get disproved with adsense. You need to enter your address like below picture in adsense application.
This is also one factor to get approval on adsense. Ha... Do not enter this address, enter your address as this format only.

05.Your site should not have adult content.
Some of us think, we can much traffic by adult content. But Google hate all of adult content and they do not accept adult content site to adsense program. Why I also not use such adult words? Because Google hate me if I do that.

In finally, I repeatedly tell that do not try "get approval in two hour schemes". They scam you with such words. I tell those 5 tips to get approval on adsense. Now it is take 14 days (two weeks) to get adsense approval. but, you need to use my tips to get your get your Google adSense approved in 2012 within 14 days(two weeks) by following my Google adSense approval tips correctly.

I think that, you enjoyed this article. I am sure that you will stumble it or share it in Facebook, tweet it. Do not miss any upcoming latest post subscribe via RSS feed to get regular update.Much Thanks for visiting.

Related Tags:

  • adsense account approval
  • adsense account approval India 2012
  • adsense account approval trick 2012
  • adsense account rejection 2012
  • Google adsense 2012
  • Google adsense account approval tips 2012
If you like our Articles Collection Please Like or Plus or Share. It will helpful to improve our site. You can also subscribe with your email to get instance updates from our site.
Thanks for visiting!!! Come Again!!!

2014 trick to get high traffic to your blog

Just a simple steps to get much traffic without much content.
Long site address(URL) drive you much automatic traffic from search engine. but short site address(URL) are not drive traffics automatically. But it is nice to type and go. So, select a middle size domain.
You can get much traffic by your labels. Add much labels when you post new articles. You need t post at least 3 articles under a label. Labels considered as tags/keywords in blogger by search engine crawlers. You can also apply new labels to older post simply under "Edit posts" section in blogger. It is may different by blog companies. such as Blogger, Word press, Weebly etc. Social media also a better way to get traffic to your site. But it is not good for adsense sites. Automatic search engine traffic is best to adsense sites.
Keywords also a structure to drive traffic to your site. So you can use Adword keyword tool to make your site with much keyword content. Search here about your keyword and chose low competition and high traffic keyword from results. You can use advanced search tool to get only targeted keywords. Use those keywords 3-4 time in a paragraph. It is drive even and even traffic t your site simply without much content.
Create much back links give you much traffic in two ways. So also try this. I explain you later.
Try these methods and get a lot of traffic to your site.
If you like our Articles Collection Please Like or Plus or Share. It will helpful to improve our site. You can also subscribe with your email to get instance updates from our site.
Thanks for visiting!!! Come Again!!!

How to modify blogger simple template to get smart template in blogger?

We see a lot of blogs with nice and smart theme/template with blogspot domain. How they are design it? It is just simple way. Follow my simple steps to get your smart template.
  • first go to blogger.com
  • Log in to your account by enter password and username.
  • Select a simple template design under "Template" tap.
  • Click "Customize" at "Live on blog" tittle.
  • Under "layout" chose a best layout which is suitable to your blog.
  • Under "Adjust width" control your side bars and entire blog width. (Number of sidebar is depend on your layout selection)
  • Go to "Advanced" tap.
  • Under "links" select a color which you like most for "Link Color". Select darken of the color for "Visited Color".  Select darken of the color for "Hover Color".
  • Under "blog tittle", select the same color for "Tittle Color".
  • Also select font site suitable for you. (Under "advanced" tab You can see all changes bellow it.)
  • Under "date header" select the color which you select first with brightness difference.(select "background color" as white.)
  • Under "Accents", For Separator Line Color select the same color. (You can also set Tabs Border Color)
That is solve. Now your blogger blog is Very Very smart and beauty too. Thanks for Google to provide all of these free service to us. I will meet you on next matter.
If you like our Articles Collection Please Like or Plus or Share. It will helpful to improve our site. You can also subscribe with your email to get instance updates from our site.
Thanks for visiting!!! Come Again!!!

The hot and high traffic SEO keyword of 2014

I recently found that hacking is the hot and highly searched word in this year. "hack this" is most keyword nowadays. Some one says that re copy the word many times on site. Like these hack this hack this hack this hack this hack this hack this hack this hack this hack this hack this hack this hack this hack this hack this hack this hack this hack this hack this hack this hack this hack this hack this hack this.
But it can identified by google and Google stop traffic t your site. so use keyword 3-4 times in every pragraph you created. Google not need much content they need short and sweet information.
If you like our Articles Collection Please Like or Plus or Share. It will helpful to improve our site. You can also subscribe with your email to get instance updates from our site.
Thanks for visiting!!! Come Again!!!

How to write high traffic SEO articles?

Hi guys,
It is a simple process that make better post to your blogger. High percentage of people are not know that "How to blog". They need to get practice in blogger.com. Many of us search for keyword and written for them. Some of them copy from another site and paste or post it to their blogs simply. It is not possible to get more traffic. People hate all these. You need to write articles as you and me. Do not write for search engine crawlers or spiders.
Now all of the sites are ranked by search engines as these,

  • Amount of people read and rate or like or Google plus.
  • Average time of a visit.
  • Average page views of every unique visitor.
  • Which is published first.
You do not try to get these points main and try to do it yourself. It is not give nice result. Blog daily freely at blogger.com. You already know how to blog. If you do not know about this read articles here and get practice there. You do not think that visitors come immediately to your blog after you post.
Post every article's titles with attract words and also post content related to topic. do not fool visitors. It  is not nice to you. Every time, we think in which topic/tittle we write about. So we lazy and avoid to publish articles. You can search or find titles from articles directories such as ezinearticles.comarticlesalley.com etc. Do write in the same title and the same content. Change a little words in the tittle and use them to write.
In every paragraph you should alert readers what they want to do. Do not think that much visitors come to your site if you write longer articles or blog post. It is also a factor in traffic. But it is not main things to get traffic.
All the best to write and do internet marketing. Lets I will meet you on next post.
If you like our Articles Collection Please Like or Plus or Share. It will helpful to improve our site. You can also subscribe with your email to get instance updates from our site.
Thanks for visiting!!! Come Again!!!

How to earn money with less work in blogger with adsense?

Most of us have a dream that earn without much hard work or continues work. I recently find a way for it and share that with you. that the way is very simple and give you sweet income easily. But, you need to do some hard work to get income constantly without continues writing. You can earn as much as with your hard work level.

Do not afraid that, its are hard work. Hard to lazy persons only. It is not hard to you.

Start a blog at blogger.com
Just go to www.blogger.com and start a blog in a category which you most like. Post 10 original and high keywords (high niche) article. You can also buy fully from any site. Do it continuously for 30 days. I suggest you to post each articles with at least with a label.

Get much traffic
There are many ways to get traffic. Do not use social media traffic except twitter. If you read about social media traffic, here. The best way I recommend you to get traffic is back links. create one back link for each article after you create posts there. You need to post longer articles. Because you are trying to earn a constant income without continues blogging. Submit for search engines. such as Google.com, Yahoo.com etc.

Approval on Adsense account
I suggest you to read my another article to get approval on Adsense quickly. If you have an account please create another one. It is violate Google's terms and conditions. You can also apply for an account through blogger. You need apply after 10 days from the blog started date and should have at least 15 best niche articles there.

To be your success
Now you finished good Job . But you feel free create back links and create new posts. Its give you more constant income to you. Do not think it is not real. Try this today.

"TRY & TRY, ONE DAY YOU CAN FLY"
If you like our Articles Collection Please Like or Plus or Share. It will helpful to improve our site. You can also subscribe with your email to get instance updates from our site.
Thanks for visiting!!! Come Again!!!

New way: Get unbelievable traffic with Twitter account?

          Many of us want to maintain their blog with high traffic and much popularity. But, 90% of internet marketers failed in it. All these happens only by their urgent target to their aim. Every internet marketer should wait for their aim to get win. Some of them only do this to make much profit or audience from their blog/website. Do not worry about the time. Just wait for a certain time.
          Now I come to the point of the tittle. You may already know that most of social marketing site help to improve your blog, readers and traffic to it. But, Twitter is the best one to improve your blog within social network. How its work? It is only used to share people's opinion with video, photos and site links too. So, we put our articles link after every articles created on it. Back links also a factor to rank your site better in search engines. These also back links to your websites. But, It shortened by twitter automatically when you post every tweets.
          Your blog or website rank increased automatically and get much traffic through search engine. I think if you like to get much traffic to your site. Then you need multiple twitter account for that. At least 15 accounts are enough t get better rank and popularized your website. Every account's profile names should different. Do not pay for traffic  drive website. It is not nice and It decreased your rank in search engines. Alexa, info links and smotion are some of them. You can use Google adwords to drive traffic. Its better to do internet marketing. In this way twitter improve my blog. So, do not miss to post/tweets every article you published on your blog or website.
If you like our Articles Collection Please Like or Plus or Share. It will helpful to improve our site. You can also subscribe with your email to get instance updates from our site.
Thanks for visiting!!! Come Again!!!

File Transfer protocol the best way to upload and download big files - FTP

We always attach to send little files through Email. Such as word documents, photos etc. This method is enough to all to send file in the high-speed internet era. But everybody need new method to send file when number of files increased. FTP-File Transfer Protocol also a such that method to transfer larger amount of files between two computer with internet. Computer to server, server to computer, computer to computer etc. through internet connection. You can not send much files though E mail. Because they have a limit size of file to send with Email. FTP is help us in this moment.
     You can share or download any type of file within two computer through FTP to FTP. Such as pictures, music, documents, presentations, videos, web pages etc. It is the oldest and only method to share messages with files before Email invented. It is the fastest method than others. It is mostly used by website designers to upload their webpages to the host server quickly. FTP to FTP is the famous and highly recommended method to transfer files securely too.
      There are two methods to attempt FTP. One is access with username and password to transfer files. Another is attempt FTP without any username and password anonymously. It anonymous FTP. Anybody can attempt it without any permissions. FTP can used in inside the browser or though specially designed software. The software named as clients software.Some of them are Filezilla, Cute FTP etc. It is the best and faster way to use FTP.
      When use FTP in browser, ftp:// inserted into the URL. For an example. ftp://gitmaster.tk. When we go to ftp://gitmaster.tk, If the server ask username and password, you need to give that in this order ftp://username:password@ftp.gitmaster.tk. If you go to ftp://username@ftp.gitmaster.tk it ask password from you. But it is not saved in browser. After you attempt FTP, you can transfer files by drag drop method into server location in it. Try it to transfer files quickly. If you research about FTP-File Transfer Protocol, read this
If you like our Articles Collection Please Like or Plus or Share. It will helpful to improve our site. You can also subscribe with your email to get instance updates from our site.
Thanks for visiting!!! Come Again!!!

How to increase blog traffic? Social media is the best way to drive traffic to your site

 Lets learn some thing on traffic and SEO. Its should useful to bloggers and website owners. Everyone of you try to get much traffic to your site for internet marketing, advertising etc. But, most of them were fault in it. I will tell you a new way to drive traffic to your site simply though social network. Social media are the best way to drive traffic and share your opinions.
        Good way to drive traffic is only to write bets content. But it also a helpful thing to you. You get much traffic when you share our site links at social media networks. You think that social networks users only access to your site though the link. It is only happen there. Normally number of back links counted by search engines. Such as Google, Yahoo, Bing, Altavista etc. Hence, when you share your link on Social media new works they also counted as back links. So you get much traffic more than your social media users.
         Some of social networks are Facebook, Twitter, Google plus etc. Facebook and Twitter are the oldest. Google plus is the new social network which ever seen on internet. You can drive traffic from alexa. But you need to pay it. But alexa gets some problems for social marketing. So I recommend you not to use alexa. You can try adwords from Google. But its drive targeted users to your site. You may read this article to Get more traffic to your blog.
If you like our Articles Collection Please Like or Plus or Share. It will helpful to improve our site. You can also subscribe with your email to get instance updates from our site.
Thanks for visiting!!! Come Again!!!

How to earn money online with adsense wathout effort?

Adsense Account Approval
Do not work hard for Google adsense. Its simple process. But you think it's so fast. You cannot get account quickly. You need to wait maximum seven days for approval. But you should not have an approved adsense account before. If you are a Indian or Chinese, then you need a six months old Blog or website. Because of the population problem in those countries-the population of those countries are high. You can create an account through Hubpages.com or Indyarocks.com simply have some blogs (post). But they should original and high efficiency to get approval fast. Anybody who had not approved adsense approval account can do this to get an account simply. But, according to Google's new policy Google approved you partly then watch your activities for maximum seven days, after come to decision approve or disapprove you. So you need to submit original and wait.

Do not believe that easy money in one day. It's not possible. Easy money is possible but fast money is impossible. Just wait at everything on earning then your earnings will come on check automatically after a few years.

How to create best content's without effort?
It's a simple process to you. But it slowly 1 or 2 article per day if you are beginner to it. Write a lot of article if you are an expert. But Experts should try to write SEO - search engine optimization articles to get more visitors to earn more money. If you are out of knowledge but like to earn more money in internet from home, You need to try more. It's not hard. Read many articles(100) on topics your likely then after write about yourself on that topics 1 or 2 per day. It's enough you and you earn much after 3 months by simply writing 5 articles per day or without writing as your like. Please do not like to earn money quickly. It's impossible to beginners. Please try to understand my opinion. Only do all as these. I promise you that you must earn money from this.

How and where write content to earn?
You can try revenue sharing sites such as hubpages.com, indyarocks.com, Triond.com, weebly.com etc. or blogger.com-a Google's product or in your own websites. These revenue sharing websites offer between 50% and 100% of your earning. Hubpage,Triond and Idyarocks give 100% of your earnings. So try here is better. You can create a own blog at blogger.com simply. also You can use your old Gmail or their Google's products account to log in here. Post daily then you can apply for adsense and fix ads to the blog from there simply.


What are the requirements? and who are eligible to this?
All of these adsense, blogger and Gmail account you need only a Google account. It may create at Gmail.com or else Google's sites. Anybody who are 18 years are eligible to earn money from Google internationally. You need a computer and internet connection also. No need to fast connection. If you are a poor then you do it from internet cafe's or elsewhere where internet connection available.

How to apply for an adsense account?
If you are applying from revenue sharing sites like as Indyarocks.com, then apply from there with your email address. After log in to the email(Google mail is better) address. You get a mail. Open it and open correct link there by follow description and enter correct information there. Because they send check to there. then accept all terms submit then wait up to 7 days for approval.
If you apply from blogger.com, same way apply from motorization (earning-in new interface). Then log in to Gmail give as above paragraph.
If you apply for your website, There visit www.google.com/adsense (without log in to any of Google's account) and click sign up then give correct information after give it. then wait for 7 days to get approval If you accepted with your current website.
If you disapproved, apply after a few post published on your blog or website.

How to increase revenue in adsense?
There is no any simple tag. All are normal as you. But something a bits affect on adsense ads place and content. So you also need to arrange them correctly. It's a simple matter in blogger. But same hard to website owners. Who use revenue sharing website are n need to arrange them. It's automatically happened there. See picture 1. Darkened place is high revenue place. So you should try to post adsense ads on it. Then you should post Original content (which created by you or bought from article market). Please do as this then your adsense revenue will be automatically increased. So do not think more about it. All things depend on your articles.

How to get paid?
 It's a simple process. But you need to wait for few days (one month for first withdrawal). You receive money by check when you reach 100$ in your account before every 30th of the month. For first month: You need to give tax information in adsense account page (www.google.com/adsense) to get address verification pin within 1 weeks. Enter pin there to hold out your payment. After it you automatically get check by writing your writing place only. For more information contact me on comment.
If you like our Articles Collection Please Like or Plus or Share. It will helpful to improve our site. You can also subscribe with your email to get instance updates from our site.
Thanks for visiting!!! Come Again!!!

Save your photos for blog or website

Every time you need to save your photo's/pictures online. Such as to redesign a template, add banner, create a self album, insert picture to your site, for Favicon, icons etc. So, you badly with it and try to save it  in an online directory freely. Search most of sites for it and get tired. You have a image host in your finger tips. but you do not know it.
 I will give it to your mind. You can also find bloggers photos there in every album, That is the Google's picture host Server www.picasaweb.google.com. You can manually upload photos here. Also can set privacy to secret those from search engine. OK now upload a lot of images in any album to get link and enjoy this free host today.
If you like it get up me in G+ top or bottom of it.

If you like our Articles Collection Please Like or Plus or Share. It will helpful to improve our site. You can also subscribe with your email to get instance updates from our site.
Thanks for visiting!!! Come Again!!!

17 September 2014

How to monetize a blog ? Make more money from blogs

What is Monetizing?

Monetizing blog is the most popular and the best way to make extra money online. There are many advertising companies ready to monetize your content. Adsense, Chitika and Clickbank are the famous advertising programs pays bit more.

Types of Monetizing

There are two types in monetizing a blog. They are

1.Advertise Program
  • PPC - Pay Per Click
  • CPI - Cost Per Impression
Eg: Google Adsense and Chitika

2.Affiliate Programs 
Eg: Clickbank, There are many companies contains affiliate program such as shopping site ,online sales centers and online marketers. Amazon and Ebay also provide these facility to their users.

How to Monetize a blog?

Advertisement program: Every advertising programs need some requirements from your blog. If you site fulfill with the requirement you can create an account in their website. After that, you only need choose the size of ads, copy its code and paste it into your blog. That all. If you using blogger and Adsense. Its very easy to do in blogger with few clicks.

Affiliate Program: First of all, you need to select the product which is you gonna to affiliate. It may physical or digital. Signup in any affiliate programGet affiliate link or banner for the product there. Write articles related to the product and include the link or banner into it. That all. If anybody buy their product from your monetize blog, You will get commission for each sale. Clickbank offers up to 90% commission for each sale.

How to make more money from a monetized blog?

You can do the two types of monetization in one blog (Advertisement and Affiliate). Write more and more articles with Affiliate links. You should write articles with SEO to get high traffic. Its gives you more sales and more money. High traffic also increase your affiliate program's PPC and CPI. Write Articles continuously daily or weekly basis. It is the biggest secret of top pro bloggers. Also, Don't forget to share your articles in social medias such as Google Plus, Facebook, Tweeter etc. Congratulation to make more money from your blog.

If you like our Articles Collection Please Like or Plus or Share. It will helpful to improve our site. You can also subscribe with your email to get instance updates from our site.
Thanks for visiting!!! Come Again!!!
Related Posts Plugin for WordPress, Blogger...

Whats up to Read<>