How to add Adsense to WordPress Blog


Google Adsense is one of the easiest ways to make money online from your website. In this article, I explain how to add Google Adsense Banners into your WordPress  Blog sidebar and content.

As you’ve probably noticed, I’m using Google Adsense in my blog to make some money online. Google Adsense is one of the biggest (and probably easiest) alternatives to make money online when you have a website or a blog.

Why Adsense?
Simple. As you’re starting to make a website or a blog, you’ll definitively want to make some money from it. This way you can at least make a few cents and pay the hosting or other expenses.

Thus, Adsense is the alternative from Google which allows you to put contextual ads into your site depending on what you’re writing.

The best thing is that Adsense is really easy to setup, and you just need to send your request with your website and wait until Google decides to enable your account.

However, one thing is to create an Adsense Ad and put it wherever you want on your blog, and another different thing is to put it on the right place. For instance, I recommend putting Adsense Ads on the following places:

  • Top Banner of your website (468×60 px)
  • Sidebar (Varies from 125×125 px up to 300×250 px)
  • Content (468×60 or 300×250)

So, to achieve this, there’s a manual way to do it by modifying your posts php file, or you can add it manually on every post. But I prefer doing it with a WordPress plugin, so let me show you how I do this.

How to add Google Adsense to WordPress

Step 1 – Create an Ad
First, go to your Adsense Dashboard and then into “My Ads” menu. Create a new Add from there:

Then customize your Ad depending on your website’s design. In my case, I selected a default style which already matches my website, but you can customize it if needed.

Also make sure you select the name of the Ad and select if you want text, pictures or both things displayed in your banner. Don’t worry too much. You can change this later.

Step 2 – Install the Quick Adsense Plugin
Now the plugin I’m going to use today is called Quick Adsense. Quick Adsense allows you to put multiple banners in your page, no matter if they’re from Google Adsense or any other Ad program (including Affiliates). So download it, enable it and access to the configuration panel.

From this point, you’ll be able to select how many Ads you want to show and the position of it. For example, I’m using an Ad at the top of the content with right alignment, and a secondary ad centered at the middle of the content.

Step 3 – Copy and Paste your codes
After you select your Ads (Google Adsense allows up to 3 ads in the same page) then you can copy and paste your Adsense Code to the selected Ads. You can also add a pixel margin between the Ad and the content, which by default is 10px.

And there you have it. After doing this, save the settings and open a post on your blog to see how it looks. If you’re not satisfied with the result, go back to the Quick Adsense panel settings and move everything until you feel it’s good enough (Remember not to be so intrusive with your readers).

Credit stream-seo
Share:

How To Fix "Microsoft Hosted Network Is Not Available" Error


Halo there my friends, are you in or perhaps in trouble solving Microsoft Hosted Network?. Well, worry not as in this tutorial am gonna show you how to fix 'Microsoft Hosted Network is Not Available' error, which appears when using Connectivity Hotspot application on your computer.

When Microsoft Hosted Network is Not Available appears you can not start the connectivity hotspot on your computer. What you should do is to go to Device Manager on your windows, then Find the Network Adapters, then look to the Microsoft Virtual WiFi Miniport Adapter, if there is a down arrow picture on the icon, it shows the driver software is out of date and you have to update it in a way, right-click Update driver Software then Search automatically for updated driver software.

Once the driver is Microsoft Virtual WiFi Miniport Adapter has been updated, start Connectivity Hotspot.

If the above methods still not work, please follow these steps ...

Open commandline cmd.exe as an administrator and enter next command:

netsh wlan set hostednetwork mode=allow ssid="MS Virtual WiFi" key="networkkey" keyUsage=persistent

press Enter and if you have entered is correct, then will confirm execution of the command and and the "Microsoft virtual WiFi miniport adapter" should appear in the Device Manager list (refresh list if you need).
Share:

#Wordpress: How To Automatically Insert Ads After First Paragraph

Hey folks, how are you doing today?...hope you're fine. Thanks for finding this topic as it is of much interest to you. Well you must have come across or seen some blogs with ads in the middle or whichever position in articles of each post, okay if you think of doing the same then hold on a continue reading this article. Putting ads code inside a post it's of a tricky job especially non-coders but still there are much simpler ways of doing even without coding classes you can still go on and do it yourself. i bet with this tutorial you can also call yourself a genius..well i i always do that...lol

Enough with talking, there is an easier way to insert ads after first paragraph automatically in wordpress  using a script that is put in the functions.php file. This method is much easier and more effective, because you do not need to touch the script adsense again during making articles.

The final result of this code is that it will be automatically be inserted by the script into the post after predetermined mark. In this tutorial, ads code will be inserted into each posts after first closing paragraph (html, paragraph), then the ads will appear in every post right after the first paragraph.

Below is a script behind the trick that must be inserted into your functions.php file to insert ads after first paragraph automatically in wordpress.

//Insert ads after first paragraph of single post content.
add_filter( 'the_content', 'prefix_insert_post_ads' );
     function prefix_insert_post_ads( $content ) {

 $ad_code = '<div>Ads code goes here</div>';
 if ( is_single() && ! is_admin() ) {
  return prefix_insert_after_paragraph( $ad_code, 1, $content );
 }

 return $content;
}
// Parent Function that makes the magic happen
function prefix_insert_after_paragraph( $insertion, $paragraph_id, $content ) {
 $closing_p = '</p>';
 $paragraphs = explode( $closing_p, $content );
 foreach ($paragraphs as $index => $paragraph) {
  if ( trim( $paragraph ) ) {
   $paragraphs[$index] .= $closing_p;
  }
  if ( $paragraph_id == $index + 1 ) {
   $paragraphs[$index] .= $insertion;
  }
 }

 return implode( '', $paragraphs );
}
Once you put the above code into functions, things you should do next is replace the red part with your ads code. You can also change the number of paragraphs by changing the orange part. Suppose I change the number of paragraph to 2, then the ad will appear after the second paragraph.

and that's how you do it, now you can insert ads after first paragraph automatically in wordpress with ease. Go ahead and call yourself a genius'@@@. If there are any questions please comment below, I will be happy to answer your questions.

Share:

How to Display Disqus Comment Count

Disqus is a comment system that has proven it's efficiency among many blogs and websites. Many of sites have now switched to Disqus comment system as it is fast, easy and simple to use, but sometime it can be frustrating when you don't see the comment counts in homepage until you go all way down to open the post. Comment counts are best way to prove to readers that your blog has a value of being viewed thus increasing you impression.

Okay saying that let's see how we can add the disqus comment count on your homepage. However you should note Disqus no longer supports import and syncronize for comment through blogger platform this is because Google has updated it's application that authenticate the access logged data with the latest OAuth 2.0 since April 2015.

Anyways you should not worry to much as I will be giving you tips on how to bring up the number of Disqus comments on the index page or your post.

First and most importantly be sure to get a disqus account.

If you haven't install disqus in your blog already please follow these steps:
1. Log in to Disqus profile > then click the Settings icon> Admin> Settings> Install> Universal Code> Then scroll to the bottom and find the phrase 'How to display the comment count'. Then copy the code immediately before the </body>

Please follow the step below 

Go to Blogger -> Template -> Edit HTML.

Place this Javascript code above </body>.
<script type="text/javascript">
    /* * * CONFIGURATION VARIABLES * * */
    var disqus_shortname = 'blogakona';
   
    /* * * DON'T EDIT BELOW THIS LINE * * */
    (function () {
        var s = document.createElement('script'); s.async = true;
        s.type = 'text/javascript';
        s.src = '//' + disqus_shortname + '.disqus.com/count.js';
        (document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
    }());
</script>
Replace the blue background text above to your Disqus shortname example: blogakona from blogakona.disqus.com is the shortname.

2. The next step you should look for comment markup something like this (This code is taken from Blogger's default template, for the rest match the template comment markup you use)
<span class='post-comment-link'>
<b:include cond='data:blog.pageType not in {&quot;item&quot;,&quot;static_page&quot;} and data:post.allowComments' data='post' name='comment_count_picker'/>
</span>
Then replace all the above code with the code below:
<span class='post-comment'><a expr:href='data:post.url + &quot;#disqus_thread&quot;' title='Comments'/></span>
In case the above code doesn't function in you template, you might want to use the code below instead. This is because some template have different comment functions.

Find this code:
<b:if cond='data:post.allowComments'>
              <span class='comment-info'>
              <i class='fa fa-comments-o'/> <a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'> <b:if cond='data:post.numComments == 0'> Add Comment </b:if> <b:if cond='data:post.numComments == 1'>1 Comment</b:if><b:if cond='data:post.numComments &gt; 1'><data:post.numComments/> Comments</b:if>
              </a>
              </span>
            </b:if>
And replace with the one below:
 <b:if cond='data:post.allowComments'>
              <span class='comment-info'>
              <i class='fa fa-comments-o'/> <a expr:href='data:post.url + &quot;#disqus_thread&quot;' expr:onclick='data:post.addCommentOnclick' title='Comments'> <b:if cond='data:post.numComments == 0'> Add Comment </b:if> <b:if cond='data:post.numComments == 1'>1 Comment</b:if><b:if cond='data:post.numComments &gt; 1'><data:post.numComments/> Comments</b:if>
              </a>
              </span>
            </b:if>
Save you template and reload to see the effect. There you are done, check me if you need more help
Share:

How To Installing Responsive Slider Recent Post


Installing Responsive Slider Recent Post - Well this time I will share about how to install a recent post that has been responsive slider.

Immediately, the way it is applied.

1. Log in to your blog> Template> Edit HTML Then copy and paste the code below just before or

]]></b:skin></style>

/* CSS Responsive Slider Recent Post */
#featuredpost {margin:15px auto;}
#slides *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}
#slides ul,#slides li{padding:0;margin:0;list-style:none;position:relative}
#slides ul{height:320px}
#slides li{width:50%;height:100%;position:absolute;display:none}
#slides li:nth-child(1), #slides li:nth-child(2), #slides li:nth-child(3), #slides li:nth-child(4), #slides li:nth-child(5){display:block}
#slides li:nth-child(1){left:0;top:0}
#slides li:nth-child(2){left:50%;width:25%;height:50%}
#slides li:nth-child(3){left:75%;width:25%;height:50%}
#slides li:nth-child(4){left:50%;top:50%;width:25%;height:50%}
#slides li:nth-child(5){left:75%;top:50%;width:25%;height:50%}
#slides li:nth-child(1) h4 {overflow:hidden;font-size:25px;bottom:0;color:#fafafa;width:100%;
padding:10px 10px 10px 90px;text-align:left;text-transform:uppercase;background:rgba(0,0,0,0.3);
height:90px;font-family:&#39;Oswald&#39;;text-shadow:2px 2px 0 rgba(0,0,0,0.2);line-height:32px;left:0;}
#slides li:nth-child(1) .label_text {font-size:30px;display:block;bottom:10px;left:10px;
padding:0;font-family:&#39;Oswald&#39;;box-shadow:5px 3px 0 rgba(0,0,0,0.2);}
#slides li:nth-child(1) span.dd {display:block;font-size:30px;padding:12px 15px;
background:#ff6553;margin:0;}
#slides li:nth-child(1) span.dm {display:block;font-size:14px;background:#333;color:#fff;
padding:5px 21px;text-transform:uppercase;margin:0;}
#slides li:nth-child(1) span.dy, #slides li:nth-child(1) span.autname{display:none;}
#slides a{display:block;width:100%;height:100%;overflow:hidden}
#slides img{display:block;width:100%;height:auto;border:0;padding:0;background-color:#333;-moz-transform:scale(1.0) rotate(0);-webkit-transform:scale(1.0) rotate(0);-ms-transform:scale(1.0) rotate(0);transform:scale(1.0) rotate(0);transition:all 0.6s linear;}
#slides li a:hover img {-moz-transform:scale(1.1) rotate(1deg);-webkit-transform:scale(1.1) rotate(1deg);-ms-transform:scale(1.1) rotate(1deg);transform:scale(1.1) rotate(1deg);transition:all 0.3s linear;}
#slides .overlayx{width:100%;height:100%;position:absolute;z-index:2;background-image:url(http://2.bp.blogspot.com/-0haO2Mfkjjk/VDgZww2tfEI/AAAAAAAAHAk/zhu3INYSkHA/s1600/fade.png);background-position:50% 40%;background-repeat:repeat-x;}
#slides h4{position:absolute;bottom:40px;margin:0;font-size:13px;font-family:&#39;Oswald&#39;;
left:10px;padding:5px 10px;color:#f9f9f9;z-index:3;line-height:20px;font-weight:normal;
background:rgba(41,41,41,0.7);text-align:left;text-transform:uppercase;margin-right:10px;}
#slides .label_text{font-size:12px;color:#fff;bottom:10px;z-index:3;left:10px;
position:absolute;background:rgba(255,101,83,0.8);padding:3px 6px;font-family:&#39;Oswald&#39;;
text-transform:uppercase;}
#slides li:nth-child(2) .autname,#slides li:nth-child(3) .autname,#slides li:nth-child(4) .autname,#slides li:nth-child(5) .autname{display:none;}
#slides .overlayx,#slides li{transition:all .4s ease-in-out}
#slides li:nth-child(1) .overlayx{display:none;}
#slides li:hover .overlayx{opacity:0.1}
@media only screen and (max-width:800px){
#slides li:nth-child(1) h4 {font-size:18px;line-height:24px;}}
@media only screen and (max-width:600px){
#slides ul{height:600px}
#slides li:nth-child(1){width:100%;height:50%}
#slides li:nth-child(2){top:50%;height:25%;left:0;width:50%}
#slides li:nth-child(3){left:50%;top:50%;width:50%;height:25%}
#slides li:nth-child(4){left:0;top:75%;height:25%;width:100%}
#slides li:nth-child(5){display:none;}}
@media only screen and (max-width:480px){#slides li:nth-child(1) h4 {font-size:13px;line-height:16px;}}
In the above CSS I used the font Oswald, please change and adjust to the theme of your blog.

2. Copy and paste the code below just above

</body>
<script type="text/javascript" src="https://arlina-design.googlecode.com/svn/slider-post.js"></script>
<script type='text/javascript'>
//<![CDATA[
$(document).ready(function () {
FeaturedPost({
blogURL:"URL-BLOG-URL",
MaxPost:8,
idcontaint:"#featuredpost",
ImageSize:500,
interval:10000,
autoplay:true,
tagName:false
});
});
//]]></script>
Replace URL-BLOG-URL with your blog url.

3. Copy and paste the code below wherever free.
<div id="featuredpost"></div>
4. . Finally save the template and view the results.

If you want to bring up the slider is just a recent post on the main page only, please wrap HTML code with a special conditional tag main page.
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<div id="featuredpost"></div>
</b:if>
Learn more about the application of conditional tags You can see here 

Some function Conditional Tags In Widgets

And if anyone feels difficulties with its implementation, here I've been providing practical version. You can simply copy all the code below into the Layout> Add Gadget> HTML / JavaScript and paste all the code there Save
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<div id="featuredpost"></div>
</b:if>
Learn more about the application of conditional tags You can see here.
Some function Conditional Tags In Widgets 
And if anyone feels difficulties with its implementation, here I've been providing practical version.
You can simply copy all the code below into the Layout> Add Gadget> HTML / JavaScript and paste all the code there> Save
<style>
/* CSS Slider Recent Post */
#slides *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}
#slides ul,#slides li{padding:0;margin:0;list-style:none;position:relative}
#slides ul{height:320px}
#slides li{width:50%;height:100%;position:absolute;display:none}
#slides li:nth-child(1), #slides li:nth-child(2), #slides li:nth-child(3), #slides li:nth-child(4), #slides li:nth-child(5){display:block}
#slides li:nth-child(1){left:0;top:0}
#slides li:nth-child(2){left:50%;width:25%;height:50%}
#slides li:nth-child(3){left:75%;width:25%;height:50%}
#slides li:nth-child(4){left:50%;top:50%;width:25%;height:50%}
#slides li:nth-child(5){left:75%;top:50%;width:25%;height:50%}
#slides li:nth-child(1) h4 {overflow:hidden;font-size:25px;bottom:0;color:#fafafa;width:100%;
padding:10px 10px 10px 90px;text-align:left;text-transform:uppercase;background:rgba(0,0,0,0.3);
height:90px;font-family:'Oswald';text-shadow:2px 2px 0 rgba(0,0,0,0.2);line-height:32px;left:0;}
#slides li:nth-child(1) .label_text {font-size:30px;display:block;bottom:10px;left:10px;
padding:0;font-family:'Oswald';box-shadow:5px 3px 0 rgba(0,0,0,0.2);}
#slides li:nth-child(1) span.dd {display:block;font-size:30px;padding:12px 15px;
background:#ff6553;margin:0;}
#slides li:nth-child(1) span.dm {display:block;font-size:14px;background:#333;color:#fff;
padding:5px 21px;text-transform:uppercase;margin:0;}
#slides li:nth-child(1) span.dy, #slides li:nth-child(1) span.autname{display:none;}
#slides a{display:block;width:100%;height:100%;overflow:hidden}
#slides img{display:block;width:100%;height:auto;border:0;padding:0;background-color:#333;-moz-transform:scale(1.0) rotate(0);-webkit-transform:scale(1.0) rotate(0);-ms-transform:scale(1.0) rotate(0);transform:scale(1.0) rotate(0);transition:all 0.6s linear;}
#slides li a:hover img {-moz-transform:scale(1.1) rotate(1deg);-webkit-transform:scale(1.1) rotate(1deg);-ms-transform:scale(1.1) rotate(1deg);transform:scale(1.1) rotate(1deg);transition:all 0.3s linear;}
#slides .overlayx{width:100%;height:100%;position:absolute;z-index:2;background-image:url(http://2.bp.blogspot.com/-0haO2Mfkjjk/VDgZww2tfEI/AAAAAAAAHAk/zhu3INYSkHA/s1600/fade.png);background-position:50% 40%;background-repeat:repeat-x;}
#slides h4{position:absolute;bottom:40px;margin:0;font-size:13px;font-family:'Oswald';
left:10px;padding:5px 10px;color:#f9f9f9;z-index:3;line-height:20px;font-weight:normal;
background:rgba(41,41,41,0.7);text-align:left;text-transform:uppercase;margin-right:10px;}
#slides .label_text{font-size:12px;color:#fff;bottom:10px;z-index:3;left:10px;
position:absolute;background:rgba(255,101,83,0.8);padding:3px 6px;font-family:'Oswald';
text-transform:uppercase;}
#slides li:nth-child(2) .autname,#slides li:nth-child(3) .autname,#slides li:nth-child(4) .autname,#slides li:nth-child(5) .autname{display:none;}
#slides .overlayx,#slides li{transition:all .4s ease-in-out}
#slides li:nth-child(1) .overlayx{display:none;}
#slides li:hover .overlayx{opacity:0.1}
@media only screen and (max-width:800px){
#slides li:nth-child(1) h4 {font-size:18px;line-height:24px;}}
@media only screen and (max-width:600px){
#slides ul{height:600px}
#slides li:nth-child(1){width:100%;height:50%}
#slides li:nth-child(2){top:50%;height:25%;left:0;width:50%}
#slides li:nth-child(3){left:50%;top:50%;width:50%;height:25%}
#slides li:nth-child(4){left:0;top:75%;height:25%;width:100%}
#slides li:nth-child(5){display:none;}}
@media only screen and (max-width:480px){
#slides li:nth-child(1) h4 {font-size:13px;line-height:16px;}}
</style>
<div id="featuredpost"></div>
<script type="text/javascript" src="https://arlina-design.googlecode.com/svn/slider-post.js"></script>
<script type='text/javascript'>
//<![CDATA[
$(document).ready(function () {
FeaturedPost({
blogURL:"URL-YOUR-BLOG",
MaxPost:8,
idcontaint:"#featuredpost",
ImageSize:500,
interval:10000,
autoplay:true,
tagName:false
});
});
//]]></script>
For application, save right on the widget Posting Blog in the Layout.

If you want to bring up the slider is just a recent post on the main page only, please wrap the widget with a special conditional tag main page. Example

Example: Click Templates> Open edit HTML> If you are a slider widget code #HTML4

<b:widget id='HTML4' locked='false' title='' 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:includable> </b:widget>
Add tags conditional on the widget to be like this:
<b:widget id='HTML4' locked='false' title='' type='HTML'>
<b:includable id='main'>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<!-- 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:if>
</b:includable> </b:widget>
Information :
  • MaxPost: The number of all the posts that will appear in the list
  • Imagesize: The maximum size of a picture (The larger the size the more clear the image pixel density will appear, but the more time it takes to load the page)
  • Interval: The time needed when the post moves (Example: 10000 means 10 seconds)
  • Autoplay: (True) Post will switch automatically, (False) Post will not switch automatically.

Any Problem? Comment below I will be glad to help.

Share:

How To Install PhotoScape on Ubuntu Distros/Linux


PhotoScape is a great, lightweight photo editing software that runs on Microsoft Windows.  With
the Linux Wine application (which allows Linux to run Windows software), this can be easily installed on Ubuntu based Linux distros.

In this case, I'm installing PhotoScape on Luna OS - a minimalist Linux distro built on Ubuntu core.

The first step is to install Wine (if you haven't already done so).  In order to do this, simply open a terminal window and type or copy paste:
essy@essy-Inspiron-3542:~$:~$sudo apt-get update
essy@essy-Inspiron-3542:~$:~$sudo apt-get install wine

Next, you'll need to install WineTricks.  To do this, simply type or copy paste:
essy@essy-Inspiron-3542:~$:~$winetricks msi2

Next, install gdiplus:
essy@essy-Inspiron-3542:~$:~$winetricks gdiplus

Finally, install the Microsoft 2008 Visual C++ Libraries:
essy@essy-Inspiron-3542:~$:~$winetricks vcrun2008

Now either open the wine configuration from the applications menu or run the following in terminal:
essy@essy-Inspiron-3542:~$:~$winecfg

Click on the Libraries tab, select msi, click Edit, then tick Bulletin then Native and click Apply.



Now (still in Libraries) select gdiplus, click Edit, tick Native, then Bulletin and then click OK.



You can now, download PhotoScape by clicking the big blue button below, install and enjoy!


Share:

High Paying Google Adsense Keywords 2017


Sometimes you can get frustration on how you blog or website gives you a negative feedback on income performances. Perhaps this happens if you have no clue on the importance of using keyword and practically applying them for your own benefit.

Well in this post today i will put down a list of the highest paying keywords in the internet world. This is very potential in enhancing the growth of your income day by day. just make sure you have a steady and frequent flow of visitors on you blog. Google Adsense is one of the finest and leading monetizing networks to generate money from your blog.  It was founded in 2003 and rapidly become a most popular and preferred monetizing network over any other. Its ad serving algorithm works on the mechanism of keywords density which are used/exists in your posts.

How Can I Earn More with Adsense High Paying Keywords?

You may think how I can make big money with high paying keywords? Here is your answer. If you have earned $3 from 60 ads clicks, then your approximately C.P.C rate will be almost $0.05 per click. Which is worst income/click and you cannot make enough money. Are you feeling satisfied for earning $3 from 60 clicks? Of course not. So what I need to do?
The solution is, use high paying keywords in your blog posts. For example; you picked a keyword which has C.P.C rate about to $2, and you get 60 clicks daily then at the end of day and month your estimated earning will be something like this
Daily income $2 x 60 clicks=$120
Monthly income 120 x 30 days= $3600

Generating $3600 only from Adsense is not a bad deal, is it? However, you can use some other monetizing network ads along with Google Adsense such as BuySellads (The best impression based advertising network). So use most expensive or high paying keywords and make big money with AdSense. Check Source For More:

Below is a list of top high paying keywords for Google Adsense.

You can create your website/blog and use the following most expensive and highest paying adsense keywords/niche for earning good revenue.


  • Mesothelioma Law Firm ($179)
  • Donate Car to Charity California ($130)
  • Donate Car for Tax Credit ($126.6)
  • Donate Cars in MA ($125)
  • Donate Your Car Sacramento ($118.20)
  • How to Donate A Car in California ($111.21)
  • Sell Annuity Payment ($107.46)
  • Donate Your Car for Kids ($106)
  • Asbestos Lawyers ($105.84)
  • Structures Annuity Settlement ($100.8)
  • Car Insurance Quotes Colorado ($100.9)
  • Annuity Settlements ($100.72)
  • Nunavut Culture ($99.52)
  • Dayton Freight Lines ($99.39)
  • Hard drive Data Recovery Services ($98.59)
  • Donate a Car in Maryland ($98.51)
  • Motor Replacements ($98.43)
  • Cheap Domain Registration Hosting ($98.39)
  • Donating a Car in Maryland ($98.20)
  • Donate Cars Illinois ($98.13)
  • Criminal Defense Attorneys Florida ($98)
  • Best Criminal Lawyers in Arizona ($97.93)
  • Car Insurance Quotes Utah ($97.92)
  • Life Insurance Co Lincoln ($97.07)
  • Holland Michigan College ($95.74)
  • Online Motor Insurance Quotes ($95.73)
  • Online Colleges ($95.65)
  • Paperport Promotional Code ($95.13)
  • Online Classes ($95.06)
  • World Trade Center Footage ($95.02)
  • Massage School Dallas Texas ($94.90)
  • Psychic for Free ($94.61)
  • Donate Old Cars to Charity ($94.55)
  • Low Credit Line Credit Cards ($94.49)
  • Dallas Mesothelioma Attorneys ($94.33)
  • Car Insurance Quotes MN ($94.29)
  • Donate your Car for Money ($94.01)
  • Cheap Auto Insurance in VA ($93.84)
  • Met Auto ($93.70)
  • Forensics Online Course ($93.51)
  • Home Phone Internet Bundle ($93.32)
  • Donating Used Cars to Charity ($93.17)
  • PHD on Counseling Education ($92.99)
  • Neuson ($92.89)
  • Car Insurance Quotes PA ($92.88)
  • Royalty Free Images Stock ($92.76)
  • Car Insurance in South Dakota ($92.72)
  • Email Bulk Service ($92.55)
  • Webex Costs ($92.38)
  • Cheap Car Insurance for Ladies ($92.23)
  • Cheap Car Insurance in Virginia ($92.03)
  • Register Free Domains ($92.03)
  • Better Conference Calls ($91.44)
  • Futuristic Architecture ($91.44)
  • Mortgage Adviser ($91.29)
  • Car Donate ($88.26)
  • Virtual Data Rooms ($83.18)
  • Online College Course ($78)
  • Automobile Accident Attorney ($76.57)
  • Auto Accident Attorney ($75.64)
  • Car Accident Lawyers ($75.17)
  • Data Recovery Raid ($73.22)
  • Criminal lawyer Miami ($70)
  • Motor Insurance Quotes ($68.61)
  • Personal Injury Lawyers ($66.53)
  • Car Insurance Quotes ($61.03)
  • Asbestos Lung Cancer ($60.96)
  • Injury Lawyers ($60.79)
  • Personal Injury Law Firm ($60.56)
  • Online Criminal Justice Degree ($60.4)
  • Car Insurance Companies ($58.66)
  • Dedicated Hosting, Dedicated Server Hosting ($53)
  • Insurance Companies ($52)
  • Business VOIP Solutions ($51.9)
  • Auto Mobile Insurance Quote ($50)
  • Auto Mobile Shipping Quote ($50)
  • Health Records, Personal Health Record ($40)
  • Online Stock Trading ($35)
  • Forex Trading Platform ($20)
Keep in mind there are more that enough keywords to use and if you find them not listed here please share with others too. Let do a happy blogging. Also share this post with friends.
Share:

How to Add A Comment Count Bubble To Blogger Post Titles


Having a comment count bubble to each blogger post titles makes your blog more attractive. This improves not only your comments count but also allows your visitors to see what are the most popular posts on your blog. If a post has more comments then it will show the popularity of posts to your readers and visitors. Therefore with this simple plugin you can still harness the power of blog performance by receiving a big number of visitors. In this tutorial let's learn the procedures of adding the comment count plugin to our blog.

As always let's get along step by step:

Step 1.
Check into you blogger account by login:

  • Go to Dashboard - Design - Edit HTML - Expand Widget Template (always keep in mind to backup you blog first)
Step 2. 
By pressing (CTRL + F)  all at once, find ]]></b:skin> code in your template

Step 3. 
Place the below code just above ]]></b:skin>:
.comment-bubble {
float : right;
width : 48px;
height : 48px;
background : url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgtp5YLzrTo7w6akhBbSf1_WSOJk9O7M6pI8l6E-N_rtmaKEaUkuq4h4LkL_IijZFuIi6NOoBEoEndmKjWY9PHvsaffI2201AJ7QuqXyH3rxOfnrX0DXPQCb80hhD6NNXh0xg2LhNGvl1hg/s1600/speech+bubble+green.png);
background-repeat: no-repeat;
font-size : 18px;
margin-top : -15px;
margin-right : 2px;
text-align : center;}

Step 4. Now find the below code: 
<b:if cond='data:post.title'><h3 class='post-title entry-title'>
Please Note: If you can't find it, search this code below instead:
<b:if cond='data:post.title'>
<h3 class='post-title entry-title' itemprop='name'>

Step 5. 
Add this code immediately after it:
<b:if cond='data:post.allowComments'>
<a class='comment-bubble' expr:href='data:post.addCommentUrl'
expr:onclick='data:post.addCommentOnclick' style='color: #ffffff; font-size: 18px;
font-weight: bold;'><data:post.numComments/></a>
</b:if>
Little Changes
  • To change the color of the comments number, replace #ffffff with the hex value of your color;
  • To change the font size, increase/decrease the 18px value;
Preview your template and if everything is ok, Save the Template.

Keep in mind you can get comment bubble image by googling. After you find your desire image right-click on it and copy the url then the change the highlighted link far above 

 https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgtp5YLzrTo7w6akhBbSf1_WSOJk9O7M6pI8l6E-N_rtmaKEaUkuq4h4LkL_IijZFuIi6NOoBEoEndmKjWY9PHvsaffI2201AJ7QuqXyH3rxOfnrX0DXPQCb80hhD6NNXh0xg2LhNGvl1hg/s1600/speech+bubble+green.png

Let me help if you get in trouble.
Share:

How to resize image thumbnails in blogger homepage


Most  default sizes of image thumbnails in blogger homepage are varies with template designs. Some template have small, medium or large images. Some bloggers prefer smaller images to make their blogs, neat, clean, orderly and most importantly fast-loading. In my tutorial today am gonna share with you simple trick on how you can go about with it. Don't worry since it doesn't need much effort with the code. Below is HTML code of which you have to copy and paste in your template.

<script type=’text/javascript’>
summary_noimg = 150;
summary_img = 250;
img_thumb_height = 75;
img_thumb_width = 75
;

</script>
<script type=’text/javascript’>
//<![CDATA[

function removeHtmlTag(strx,chop){
if(strx.indexOf("<")!=-1)
{
var s = strx.split("<");
for(var i=0;i<s.length;i++){
if(s[i].indexOf(“>”)!=-1){
s[i] = s[[i]subs[i]ng(s[i].inde[i](“>”)+1,s[i].leng[i];
}
}
strx = s.join(“”);
}
chop = (chop < strx.length-1) ? chop : strx.length-2;
while(strx.charAt(chop-1)!=’ ‘ && strx.indexOf(‘ ‘,chop)!=-1) chop++;
strx = strx.substring(0,chop-1);
return strx+’…’;
}

function createSummaryAndThumb(pID){
var div = document.getElementById(pID);
var imgtag = “”;
var img = div.getElementsByTagName(“img”);
var summ = summary_noimg;
if(img.length>=1) {
imgtag = ‘<span style=”float:left; padding:0px 10px 5px 0px;”><img src=”‘+img[0].src+[0] width=”‘+img_thumb_width+’px” height=”‘+img_thumb_height+’px” style=”background:#fff;padding:3px;border:1px solid #eee;”/></span>’;
summ = summary_img;
}

var summary = imgtag + ‘<div>’ + removeHtmlTag(div.innerHTML,summ) + ‘</div>’;
div.innerHTML = summary;
}

//]]>
</script>

In your HTML section search for </head> and paste the code above before the code  the simply change the value of (img_thumb) to your desire size or according to your taste.

img_thumb_height = 75;
img_thumb_width = 75; 

But if your template doesn’t include these codes, copy and paste it, just above the </head>

Safe and refresh your blog to see the changes. Any a trouble persists? let me help in the comment box below.
Share:

#Timebucks: How To Earning Extra Cash With Timebucks


Hey folks, hope you'r all doing great today. As always am bringing you some good news today. I just learnt a new simple way of earning some extra cash by almost doing nothing at all. As I was browsing through the internet of which it's my thing and am kind of addicted to it, i decided not to watch porn...lol... instead I and got interested in something else called Timebucks.

Why Join time bucks? Get Paid Real Cash for....

TimeBucks is a reward site where you can earn real cash for performing various tasks and activities that you already do everyday. You can earn cash from doing things such as:-

  • Taking surveys
  • Watching videos
  • Voting
  • Installing free apps 
  • Playing games
  • Taking selfies
  • Growing a beard 
  • Performing web searches and much more!


TimeBucks is unique from other reward sites because they pay in real cash, not gift cards. The also pay weekly via PayPal with a low minimum payout of $10. With TimeBucks, you get your own dedicated account manager to help you earn as much cash as possible!

TimeBucks is free to join, and also has a referral program where you can earn commission for referring your friends! So if you're a single mom, a student, or you're just looking for some extra cash to pay the bills, then TimeBucks is the place for you!


To view how TimeBucks works, please watch the video below:


Share:

Trending

Unordered List

  • Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
  • Aliquam tincidunt mauris eu risus.
  • Vestibulum auctor dapibus neque.

Pages

Theme Support

Need our help to upload or customize this blogger template? Contact me with details about the theme customization you need.