Monday, December 31, 2012



Blogger provide an awesome tool for customizing a template called a Blogger Template Designer. Using Blogger Template Designer you can change the font style, color,width of template, background of template. Blogger Template Designer provide an easy way customizing template if you added interface into template for Blogger Template Designer. In this post I'm telling how to add interface for Blogger Template Designer in your custom template.
Let us start,
Interface with Blogger Template Designer is created with the help of the variables. Variables are used to store some values like color, font family, font size, background image URL. Those values are used into CSS for applying look and feel for template.


This variable are defined between
 <b:skin><![CDATA[
and
]]></b:skin>
How to Define Variables
Syntax of defining variable is
<Variable name="post.title.font" description="Font" type="font" default="normal normal 22px Arial, Tahoma, Helvetica, FreeSans, sans-serif" value="normal normal 24px Georgia, Utopia, 'Palatino Linotype', Palatino, serif"/>
Lets look in details
  • name is variable name, which is unique name, used to access variable into CSS.
  • description used to identify variable into Blogger Template Designer.
  • Using type, Blogger Template Designer decide which type of interface is provide for customizing variable. You can use font, color or any custom string.
    1. Template designer provide the following type of box for changing font value.

    2. For color,

  • default is default value which is unchangeable, this is used to reset the value of that variable.
  • value is current value.
Values for color is display HEX_Color_Code format and font in Font_Shorthand format.
Syntax for Font_Shorthand format,
<font-style> <font-variant> <font-weight> <font-size> / <line-height> <fontfamily>
Where font-size and font-family is required, for other used their default value if missing.

Grouping Variables
Grouping variables is make also user friendly interface with template designer. By grouping you can access multiple properties for that element at one place. For example for post title you can group post title color and post title font together. Another example grouping together link color, visited link color and hover link color under the link.
Syntax for Group,
<Group description="Group Title" selector="h1">
....
<!--Variable here-->
....
</Group> 
Where,
  • description is name of group title, used to categories variable in blogger template designer.
  • selector mention that which part is selecting from blogger template while this group is selected for editing. It is useful, when someone editing template via designer, it shows to user which part of template being edited.
Example,

<Group description="Blog Title" selector=".header h1">
     <Variable name="header.font" description="Font" type="font" default="normal normal 60px Arial, Tahoma, Helvetica, FreeSans, sans-serif" value="normal normal 48px Georgia, Utopia, 'Palatino Linotype', Palatino, serif"/>
     <Variable name="header.text.color" description="Title Color" type="color" default="#3399bb"  value="#ffffff"/>
</Group>
Above code is the group of  font and color for blog title, having description "Blog Title" and selector is h1 tag inside class header. So when you select Blog Title for editing in template designer then where h1 tag under header class is highlighted. Type of variable provide a particular interface for editing values, here variable header.font having type font with description Font and variable header.text.color having type color with description Title Color. When you see this in template designer look like as,


How to use in CSS
In general, we are using css like this.

.header h1{
    font-family:Verdana, Geneva, sans-serif;
    font-size:12px;
    font-style:italic;
    font-weight:bold;
    
    color:#00C;    
}
If you want to use an variable in CSS, use variable instead of value closed inside $( ). See following code.
.header h1{
    font:$(header.font);    
    color:$(header.text.color);
}
In this type value for font and color is taken from variable.

Example,

<?xml ... ?>
<html ....>
<head>
<b:skin>
<![CDATA[
/* Variable Defination       
<Group description="Links" selector=".main-outer">
    <Variable name="link.color" description="Link Color" type="color" default="#2288bb" value="#c4005b"/>
    <Variable name="link.visited.color" description="Visited Color" type="color" default="#888888" value="#909090"/>
    <Variable name="link.hover.color" description="Hover Color" type="color" default="#33aaff" value="#ff13b8"/>
</Group>
*/
a:link {
  text-decoration:none;
  color: $(link.color);
}

a:visited {
  text-decoration:none;
  color: $(link.visited.color);
}

a:hover {
  text-decoration:underline;
  color: $(link.hover.color);
}
]]>
</b:skin>
</head>
<body>
....
</body>
</html> 
You can also use one variable value to define another variable so that changing the one variable value will reflect effect on all template.

Width of Blog and Sidebar
In template <b:skin></b:skin> used for enclosing an CSS, same as <b:template-skin> and </b:template-skin> is used to enclosed length factor of template means width of template, sidebar.
In this, variable syntax is same but type of variable is length.

<b:variable default='960px'  name='content.width' type='length' value='990px'/>     
<b:variable default='310px' name='main.column.right.width' type='length' value='340px'/> 


Example,

<b:template-skin>
  <b:variable default='960px'  name='content.width' type='length' value='990px'/>
  <b:variable default='310px' name='main.column.right.width' type='length' value='340px'/>
  <![CDATA[ body {
    min-width: $(content.width);
    }
    .main-inner .columns {       
    padding-right: $(main.column.right.width);
    }
    .main-inner .fauxcolumn-right-outer {
    width: $(main.column.right.width);
    } ]]>
</b:template-skin>
I hope this post will help you. If any problem or suggestion leave commen.

Saturday, December 29, 2012


Disqus is most popular comment management system. Disqus comment system is compatible with search engine optimization. Comment from disqus are easy crawled by Google bot and other popular search engine. Now more that 750,00 website are using disqus comment management system. Disqus provide plugin for installation disqus comment in Blogger, but some time plugins are not installed. That time you need to install manually. One mistake is happened in manual installation is, disqus comment system is see on the index page also. So I tell you step by step how to install disqus comment correctly in blogger manually.

  1. Login to Blogger.
  2. Go to Layout > Add a Gadget.
  3. Select HTML/JavaScript Gadget.
  4. Now Login to Disqus.
  5. Goto Setting > Install.

  6. Select Blogger Platform.

  7. Click on the Add to my Blogger Site.

  8. Copy the content from "Edit Content".

  9. And Paste into HTML/Java Script Gadget with title as Disqus and Save this Gadget.
  10. Now go to Template > Edit HTML > Check Expand Widget Template.
  11. Search for Disqus (if you given different name for HTML/JavaScript Gadget, then search with this name). then you look like this code.
    <b:widget id='HTML5' locked='false' title='Disqus' type='HTML'>
    <b:includable id='main'>
      <!-- only display title if it's non-empty -->
      <b:if cond='data:title != &quot;&quot;'>
        <h2 class='title'><data:title/></h2>
      </b:if>
      <div class='widget-content'>
        <data:content/>
      </div>
      <b:include name='quickedit'/>
    </b:includable>
    </b:widget>
  12. Delete the code in between tags
    <b:widget id='HTML5' locked='false' title='Disqus' type='HTML'> 
    and
    </b:widget>
  13. Now copy the second code from Disqus which is below Edit content named as Edit Template.

  14. And paste code in between tags mention at the step 12.
  15. Which is look like this
    <b:widget id='HTML5' locked='false' title='Disqus' type='HTML'>
            <b:includable id='main'>
                <script type='text/javascript'>
                    var disqus_shortname = 'growinfotech';
                    var disqus_blogger_current_url = "<data:blog.canonicalUrl/>";
                    if (!disqus_blogger_current_url.length) {
                        disqus_blogger_current_url = "<data:blog.url/>";
                    }
                    var disqus_blogger_homepage_url = "<data:blog.homepageUrl/>";
                    var disqus_blogger_canonical_homepage_url = "<data:blog.canonicalHomepageUrl/>";
                </script>
                <b:if cond='data:blog.pageType == "item"'>
                    <style type='text/css'>
                        #comments {display:none;}
                    </style>
                    <script type='text/javascript'>
                        (function() {
                            var bloggerjs = document.createElement('script');
                            bloggerjs.type = 'text/javascript';
                            bloggerjs.async = true;
                            bloggerjs.src = 'http://'+disqus_shortname+'.disqus.com/blogger_item.js';
                            (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(bloggerjs);
                        })();
                    </script>
                </b:if>
                    <style type='text/css'>
                        .post-comment-link { visibility: hidden; }
                    </style>
                    <script type='text/javascript'>
                    (function() {
                        var bloggerjs = document.createElement('script');
                        bloggerjs.type = 'text/javascript';
                        bloggerjs.async = true;
                        bloggerjs.src = 'http://'+disqus_shortname+'.disqus.com/blogger_index.js';
                        (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(bloggerjs);
                    })();
                    </script>
            </b:includable>
    </b:widget>
  16. And save template.
You done it. I hope help to install disqus comment into blogger without any problem. If you have any problem they feel free to ask.

Updation Credit:
 This post is updated at 31-12-2012 and credit go to Michael Hazell.

Wednesday, December 26, 2012

Wednesday, December 26, 2012

Customise Facebook Like Box Using CSS


In this post I will tell you how to customize Facebook like box using CSS. First of all go to Facebook Like Box Creator Page. Than fill all field display in below image.

  • URL of your Facebook page.
  • Width 250 and height 258
  • Check Show faces 
  • Select light color scheme
  • Uncheck Show stream
  • Fill border color with #f4f4f4
  • and uncheck Show header.
After filling all information click on  Get Code. Pop up window is open which contains code. Select the IFRAME option.


Copy all code and paste in between below code.


<div style="-moz-box-shadow: 0px 15px 20px 0px #777777; -webkit-box-shadow: 0px 15px 20px 0px #777777; background-color: #f4f4f4; border-radius: 15px; border: 1px solid #CCCCCC; box-shadow: 0px 15px 20px 0px #777777; height: 270px; margin: 30px; padding: 10px 0 10px 10px; width: 250px;">
<div style="height: 250px; overflow: hidden;">
<!-- Paste Facebook Likebox IFRAME Code Here-->
</div>
</div>
After copy code look like this


<div style="-moz-box-shadow: 0px 15px 20px 0px #777777; -webkit-box-shadow: 0px 15px 20px 0px #777777; background-color: #f4f4f4; border-radius: 15px; border: 1px solid #CCCCCC; box-shadow: 0px 15px 20px 0px #777777; height: 270px; margin: 30px; padding: 10px 0 10px 10px; width: 250px;">
<div style="height: 250px; overflow: hidden;">
<iframe src="http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FGrowtechinfocom%2F523818640976777&amp;width=250&amp;height=258&amp;show_faces=true&amp;colorscheme=light&amp;stream=false&amp;border_color=%23f4f4f4&amp;header=false" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:250px; height:258px;" allowTransparency="true"></iframe>
</div>
</div> 
If copied does not contain http: then add you own otherwise you get an error.
If you get any error feel free to ask.
Wednesday, December 26, 2012

Dropdown Menu With Pure CSS

In this post I give an example of horizontal drop-down menu designed using pure css.


CSS Code

 #navdemo1 ul ul {  
     font-family:Verdana, Geneva, sans-serif;  
     font-size:14px;  
     display: none;  
 }  
 #navdemo1 ul li:hover > ul {  
     display: block;  
 }  
 #navdemo1 ul {  
     background: #fefefe;      
     padding: 0 10px;  
     font-family:Verdana, Geneva, sans-serif;  
     font-size:14px;      
     list-style: none;  
     position: relative;  
     display: inline-table;  
 }  
 #navdemo1 ul:after {  
     content: "";  
     clear: both;  
     display: block;  
 }  
 #navdemo1 ul li {  
     float: left;  
 }  
 #navdemo1 ul li:hover a {  
     color:#000;  
 }  
 #navdemo1 ul li a {  
     display: block;  
     padding: 15px 30px;  
     color: #000;  
     text-decoration: none;  
 }  
 #navdemo1 ul ul {  
     background: #FEFEFE;  
     padding: 0;  
     border-radius: 5px;  
     -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%);  
     -webkit-linear-gradient(top, #efefef 0%, #bbbbbb 100%);  
     box-shadow: 0px 0px 9px rgba(0,0,0,0.15);  
     position: absolute;  
     top: 100%;  
 }  
 #navdemo1 ul ul li {  
     float: none;  
     border-bottom: 1px solid #DDD;  
     position: relative;  
 }    
 #navdemo1 ul ul li a {  
     padding: 10px 40px;  
     color: #000;  
 }  
 #navdemo1 ul ul ul {  
     position: absolute;  
     left: 100%;  
     top:0;  
 }  
 .noborder{  
     border:none;  
 }


HTML Code 

 <div id="navdemo1">  
  <ul>  
   <li><a href="#">Home</a></li>  
   <li><a href="#">Tutorials</a>  
    <ul>  
     <li><a href="#">C</a></li>  
     <li><a href="#">C++</a></li>  
     <li><a href="#">Java</a></li>  
     <li><a href="#">.NET</a></li>  
     <li><a href="#">php</a></li>      
     <li class="noborder"><a href="#">Web Design</a>  
      <ul>  
       <li><a href="#">HTML</a></li>  
       <li class="noborder"><a href="#">CSS</a></li>  
      </ul>  
     </li>  
    </ul>  
   </li>  
   <li><a href="#">Review</a>  
    <ul>  
     <li><a href="#">Software</a></li>  
     <li><a href="#">Website</a></li>  
     <li class="noborder"><a href="#">Mobile</a></li>  
    </ul>  
   </li>  
   <li><a href="#">About Us</a></li>  
  </ul>  
 </div>  


Wednesday, December 26, 2012

Add Disqus Recent Comment Widget to Blogger

In this post I will tell you how to display an disqus recent comment widget on your blog. Some visitor judge your post from comments, so recent comment widget is best way to divert traffic to your famous post. Also this widget encourage people to comment on your blog.


Follow the steps,
  • Go to Blogger
  • Layout > Add a Gadget
  • Select HTML/JavaScript Gadget and Paste below code.
 <div id="recentcomments" class="dsq-widget"><script type="text/javascript" src="http://yourshortname.disqus.com/recent_comments_widget.js?num_items=5&hide_avatars=0&avatar_size=32&excerpt_length=200"></script></div>
Before Paste:
  • replace yourshortname.disqus.com with your site's disqus id.
  • 5 indicate how much recent comments display in your widget, replace as you want with number.
  • 0 is for displaying avatars in widget for comment, to hide avatar replace 0 with 1.
  • 32 size of avatar, replace according to  your widget size in blog.
  • 200 is for how much character from  comment is showing in that widget for each comment.
and Save.

Sunday, December 23, 2012

How can I start?
What I can write?
Is that any spelling mistake there?
Is this grammatically correct?
All this type of question are faced by newbie bloggers. Is that really article or any blog's post writing is so difficult? Post I am telling some tips, which will help you to write some awesome article.

How to Start

Many bloggers mostly newbie blogger, who want to write some awesome article, but they unable to write because they do not know how to express? Some bloggers are having lots of technical knowledge but they are not expressed or they do not understand how to start?

Start with Question answering
Pick up any question from your topic and answer that question. If you think another question regarding to previous question and give answer, that way you create a chian of question and answer. With this you will solve the problem of your blog reader. It is not necessary to write like essay, question/answer is best way to express your knowledge.

Explain diagrammatically
If you want to explain any step by step explanation then you can also explain via diagram.  View example.
 In above post I explain step by step procedure with the help of diagram. So it is very easy to explain and easy to understand for reader. But do not use unnecessary images.

When you visiting others blogs or website watch, how they starting, study their writing technique, where they use image, how they end there article. This may be help you to improve your writing technique.

Language Problem

 This is most important factor, language problem. because this is thing which is in between you and writing. Most of the people can explain better in their own language but if in other language they does not able to express in better way.
For that there is an important tool for such people called Google Translator.


Google provide a such excellent tool which support most of major language. Can translating from one language into another language. So don't worry about language problem, just say thank you to Google and use their Google Translator.

Spelling mistake

After your translating to English language just copy it to Blogger post editor or MS-Word, it will suggest you for spelling mistakes.

Grammar mistakes

For Grammers mistakes your I recommended you use http://www.paperrater.com/ After finishing your writing, copy your article for checking grammatical mistakes.


I Hope this post will help to write some awesome article. Happy writing.

Saturday, December 22, 2012

Saturday, December 22, 2012

Increase Adsense Revenue With Basic Tips

Today it is very hard to increase the Google Adsense click through rate(CTR). Every visitor know about Google Adsense, and visitors avoid to click on the ads. Even I when hover mouse on any link or banner, first see the link display at the below, its from current website or from any advertising program. So you get an lots of impression but generate less click, it will definitely effect on your Adsense revenue. Google Adsense are easily identify, because of there standard format of ads like Ads title in blue, description in black and URL in green color. So I share some basic and common tips, I hope which will help to increase the revenue of Adsense.

Customizing Ads

Google Provide Ads Customization Option where you can change the font-family, font-size and color of ads, But Google does not allow to alter the code externally. So customizing ads can increase the revenue of Google Adsense. Here are some tips regarding to customizing ads.

  • font-face: Keep the font of ads same as your content font. Google provide few fonts for ads, so it is better that one of these font is apply for your blog content.
  • font-size: Size of Ads keep little bit bigger than you content size. Adsense provide only small, medium and large font size, according to ads size adjust your content font-size.
  • Color of Ads: Color is most important factor in customizing ads. Text ads contains an three section in the ads: Title, Description, URL. Keep the color of link same as the your hyperlink while description and URL color is same as content color. It will help to generate more click.
  •  Background and Border: Change the color of background and border same are background of your blog or website.

Type, Format and Placement of Ads

Google Adsense provide an plenty of ads format, different ads types. Choosing right format, type with placement will increasing in CTR.


  • Display Ads (Rich/Image Ads) are easily identify by visitor and fact is that you generate more revue from Text ads than Display ads. So keep this ads at the Header, Sidebar section is also good looking and professional.
  • If your navigation menu is horizontal then Link Unit 4 is better option. choose one from 468x15 or 728x15 depend upon width of navigation bar, and keep align left not center nor right. Which will look like sub navigation bar if you customize according to your main navigation bar.
  • If your navigation menu is vertical then choose Link Unit 3. There are also many size format in Link Unit 3. So choose and customize properly.
  • Text ads, which is the way from you generate more revenue, because Text ads are suitable for your content and if you customize and place properly then it will look like part of your content.
  • Use Square and rectangular ads above the content and below the title of post. which will more noticeable to visitor and one more fact that Adsense display the links relevant to the content. So that ads will help to generate more clicks.
  • If you move your post image side to the ad, this will look pretty nice. Also adding some widget like share it, add this are much better. Your also experiment, alternating the position of ads and image.
  • If want to use 468x60 then you should align center.

  • I personally recommanded If you are using an Banner(468x60) as Text ads,then it is better you should use two Half Banner(234x60) ads(If you not overlmited the maximum ads according to Adsense policy.), because some time 468x60 display single ads and some time display double ads inside 468x60, which look like nasty.
    Single Ads with 468x60
    Two ads with 468x60
    But if you use half banner text ads it will be always displaying two separate ads, pretty nice!!

  • For Leaderboard(728 x 90) below the navigation bar or above the footer is best place, if they align center.
  • 468x15 Link unit write below when your content is end, will also generate more clicks.
  • Some time bigger is better, if your are using 3 column layout for your website or blog then Wide Skyscraper(160x600) or Skyscraper (120x600)  are very good options for both text ads or display ads.
  • Last but not least Medium Rectangle (300 x 250) and Large Rectangle (336 x 280) as my opinion at the end of content is best place.
So, I hope this tips will help to increase your revenue. Enjoy your revenue.

Wednesday, December 19, 2012

Wednesday, December 19, 2012

Google Rich Snippets

What is snippets ?

Snippets is the some text line display in search result. Snippets contains Meta tag information like description which is display in search result. Snippets are also useful for search engine optimization.

About Google Rich Snippets:

For more user friendly search result, Google design rich snippets, which helps search engine to collect information from web page and display search result with some rich widgets like ratting, image, videos, etc. Rich snippets gives an idea to user, what type of content is available on that webpage. As in name this search result look like rich as compare to simple snippets.

Type of rich snippets:

  • Review rich snippet

Review snippet display an information about review taken by author or visitors. In search result snippet display an how much rate is given in review and by how many votes are registered for that review.


In above example 6 votes are counted for review and average ratting is 4.

  • Product rich snippet

Product snippet includes all type of products like electronic, software, stationary, etc. Product snippet display an price, category of product, also including an review snippet contents.


Here, Cut the Rope is an android application having price $0.99.

  • People rich snippet

People snippet display address, role of person.  Other optional fields are also available for more information like nickname, photo, URL of person's home page, etc.


About example display address and role of person.

  • Recipes rich snippet

Recipes snippet display an image, total recipes time, calories and review (nested with recipes). Also optional values published date, nutrition, instruction, etc.


Butter Flaky Pie taken an 15 minutes recipes time and have 173 calories.

  • Event rich snippet

Event rich snippets indicates an event occurs at specific future date. Event snippets display an name, date and event location. Google does not allow to use Event snippet for promoting purpose.


  • Music rich snippet

Music snippet display an information about album wise or artist wise, which display an information like song title, duration, album or artist name.



Tuesday, December 18, 2012

Tuesday, December 18, 2012

High PR Free Directory List

This summary is not available. Please click here to view the post.

Monday, December 17, 2012

Monday, December 17, 2012

Infolinks - In Text Advertsing


Infolinks Logo
Type CPC,CPM
Payment Method Paypal, Check, Wire
Minimum Payout $50
Payment Throsold NET45
Webste http://www.infolinks.com
Rating

Infolinks is leading company in In-Text Advertising network. Infolinks company started around year 2007 and supported over 100,000 website in 128 countries. Infolinks receive over 1 trillion clicks per month. Infolinks share 70% revenue with publisher. Infolinks is one of the best Google Adsense Alternative.

Payment Methods with Minimum Payout :

  • eCheck:

    • For eCheck payment method, minimum payout is $50.
    • Transaction Fee $6.
    • 2% currency conversion fee may apply.
  • Wire Transfer:

    • Minimum payout is $100.
    • Transaction Fee $25. 
    • 2% currency conversion fee may apply.
  • Payoneer:

    • Minimum payout is $50.
    • Payoneer transaction fees apply.
  • PayPal:

    • Minimum payout is $50.
    • Transaction fees  2% of the amount, maximum US $10.00.

Payment Frequency:

Infolinks support NET45 payment policy, means you get paid out after 45 days. If you earn more than minimum payout in January then you get paid at 15 March.

Getting Tags and Installation:

Getting tag from infolinks is very easy. They provide an 1-Minute Integration Option, where you can easily access your tag code.
Copy this code and paste above closing body tag </body>. Infolinks also provides an plugins for WordPress, Blogger, Drupal and Joomla.

Ads Gallery:

Infolinks supports many ad types.
  • InText:

Infolinks program scan your webpage content and link relevant words to there ads, when visitor hover mouse on that links small window open containing ads.


InText Ads are easy to customize, Infolinks provide an three options for customizing an InText ads,



    • Link Color:  You can choose color of your ads link suitable as to website template.
    • Max links Per Page: You also choose how many ads links to be appear on you page. Average links per page will increasing in clicks.
    • Link Style: Infolink provide two type style Double and Dotted.
  • InSearch:

InSearch ad is display when visitor come through search. A few second after it appear and shirk down to the bottom.

  • InTag:

InTag ad are similar to Google Adsense  468x15 Link unit.

Infolinks given an two way to install inTag ads:
    • Automatic: Infolinks automatically place InTag ads below your post.
    • Manually: Another way is you place code of InTag ads where you want. Just copy the code and place in your content any where.
        <input type="hidden" name="IL_IN_TAG" value="1"/> 
  • InFrame:

Recently, Infolinks launch new ads type InFrame. Based on your website’s category, InFrame will display attractive banner ads in the margins of your website’s pages.

Restrict Certain Region:

To avoid displaying ads into sidebar, header or navigation menu instead of content, you ON and OFF ads for website's particular region.
  • To enable parsing from this point  use:
       <!--INFOLINKS_ON-->
  • To disable parsing from this point use:
      <!--INFOLINKS_OFF-->

Saturday, December 15, 2012

Saturday, December 15, 2012

Add Meta Tag to Every Posts In Blogger


Meta tag is tag which provide an short description of your webpage content. Meta Tag is also important for search engine optimization, description is snippet and display in the search result by search engine.
New Blogger interface provide an facility to add meta description tag for each an every post.

First you enable your Meta description tag for your post. For that,

  •  Login to your blogger account.
  • Go to Setting > Search preferences.

  • Then click on Edit link in Meta tags > Description.

  • Select "Yes" option and write description for your Homepage and click on save.




Now, you enabled description meta tag for all post in your blog.
  • Finally when you create a new post or edit post, your able to add description meta tag in your post as display in below image,

Thursday, December 6, 2012

Thursday, December 06, 2012

Kontera - In Text Advertising



Kontera Logo
Type CPC,CPM
Payment Method Paypal, Check, Wire
Minimum Payout $50
Payment Throsold NET30
Webste http://www.kontera.com
Rating

Kontera is popular In-Text Advertising network, where ads appear as double line links with in the content of website or blog. When you hover over the mouse on those links small window open which display an ads. Yoav Shaham is the creator of Kontera In-Text advertising program. Programs scan all text from the publisher’s website and link it to relevant ads. When some clicks on ads, so you get paid.

Payment Methods: 

Payment methods available for Kontera are as follows:
  • US Publisher
    • Check
    • EFT (Electronic Fund Transfer)
    • Paypal
  • Publishers from Canada, Mexico, Australia, New Zealand, Austria, Belgium, France, Germany, Ireland, the Netherlands, Spain, Switzerland, and the United Kingdom
    • Check
    • International ACH
    • Paypal
  • All Other International Publishers
    • Check
    • Wire
    • Paypal

Minimum Payout:

$50 is minimum payout for the Kontera. If your earning is less than $50 then this month earning will added into next month earning.

Payment Frequency:

Kontera support NET30 payment frequncy. You get paid after 30 day of complitaion of minimum payout. If in may you earn more than $ 50 then you get paid in first week of July.

Installation:

Kontera ads are easy to install in your blog. Login to your Kontera publisher account then select Kontera Setup. Copy the paste tag into your HTML source page just before the closing of body tag.



For WordPress, Blogger, Joomla, Drupal they provide a plug-in for easy installation.

Optimization:

Kontera tags are easy to optimize. 

  • Link Color:

You can choose your link color which is suitable to your website or blog template to increase the revenue.



  • Zone Tags:

Kontera provide a Zone tags for publisher. Zone tag is used to concentrate ads within the particular region of your page. For example you want to display more ads in first paragraph of content and avoid bottom of page. You will need opening and closing zone tags to achieve.  Kontera will place ads in between these opening and closing zone tags.
<div class="KonaBody">
 <p>This is first paragraph. I want to show more
and more ads in this paragram.This paragraph contains
some high paying keyowrds,thats why I want to more ads in
 this paragraph. </p> 
</div>
<p>This is second paragraph and I does not want to display ads here</p>

  • Filter Tags:

Sometime publisher are interested to avoid certain region to display ads, that time Filter tags are used.
<div class="konafilter"> Content to be excluded  from analyzing  </div>


 

back to top