How to Add Pocket Read it Later Button in Your Blogger Posts

Providing your users an option to read your articles later is becoming extremely useful. We all are well aware of the fact that tools plays significant role in helping users to save and share our content. These tools extensively impact the probability of return of a visitor. Google+ Buttons, Facebook follow button and Pinterest buttons are used for the same purpose, to encourage users to share and engage with your content. In this article, we will show you how to add read it later button in Your Blogger Posts?

To add a read it later button to your blogger posts, we will be using an online bookmarking tool called Pocket. We will add Pocket read it later buttons with counters, this would provide your readers a convenient way to read your content later anytime, anywhere, everywhere.

Adding Pocket – Read it Later Button in Blogger?

The first thing you need to do is to go to http://getpocket.com/publisher/button and choose the button style that you would like to add on your blog. There are quite a few styles that you can choose according to your needs.
After selecting the button, on the right you can see the live preview of the widget. Whereas on the bottom you see get the code of the widget which you would use to add the Pocket read it later button in blogger. Just Copy the whole code as shown in the screen shot below and proceed to the next step.
Now go to Blogger.com >> Template >> Edit HTML and search for the <data:post.body/> tag and just below it paste the code which you copied a step earlier. However, if you want to add this button at the end of your post then paste the code below this   <div class='post-footer'>.

Congratulations: Once everything is done, simply press the “Save” button and Pocket Read it later button is ready, and good to be live on your website. Now go and check your website to see the Pocket Read it later button in your Bogger posts.

We hope this article has helped you in learning how to add pocket read it later buttons in your blogger posts. Let us know about Pocket, if you are already using it on your website. If anyone has any problem while applying this tutorial then, do not hesitate to leave a comment below.
Learn more »

How to Add a YouTube Subscribe Button in Blogger


 
 
If you are a video blogger who loves to record odd videos and use YouTube to host them on their websites, then you might also prefer adding a YouTube Subscription widget, which would ultimately encourage users to follow you on your official YouTube channel associated with your website.  Recently, one of our users asked us How to Add YouTube Subscribe Button in Blogger? Sometimes you don’t want your users to follow extra instructions to subscribe to your channel, so it is better to put up such widget that subscribes your visitors to your channel with just one click. In this article, we will show you How to Add YouTube Subscribe Button in Blogger.

The first thing you need to do is to go to YouTube Developer’s page. Once the page is completely loaded scroll down to “Configure a button” and fill the text fields with your information. Insert your YouTube Channel URL, eg: /mybloggerlab. After entering the URL, you can customize the appearance or layout of your YouTube Subscription button.

While making changes, you can see the interactive preview on the right. Once you have finished customizing your widget, copy the code present below the “Preview” and paste it anywhere you would like to show on your website.

Now go to Blogger.com >> Add a Gadget >> Add HTML/JavaScript and paste the code in the HTML Text box which you copied a few moments ago. Once everything is done, press “Save” button to complete the process.

Congratulations: You have successfully added YouTube Subscribe Button in Blogger. Now go and check our blog to see the widget in action.

We hope this article have helped you in learning How to add YouTube Subscribe Button in Blogger. Does anyone actively use YouTube.com to upload videos and other interesting stuff? Feel free to share you experience by commenting below.
Learn more »

How to Embed a YouTube Video as Page Background in Blogger


 
Some people might be wondering if there really exists a way to embed a YouTube video in the background of a Blogger blog that actually plays and works just like every other normally video embedded. Recently, one of our users asked us How to Embed a YouTube Video as page Background in Blogger? Embedding a YouTube video might turn out to be productive for a user who is selling a product, so it could be useful in attracting customer’s attention and interest. Today in this article, we will show you How to Embed a YouTube Video as page Background in Blogger.

Although, the results can be wonderful and productive but on the other hand, it has three major drawbacks. The videos cannot be paused, so if there is an ad running on the video you cannot do anything about it. It might slow down your blog, so before adding make sure you use it purposely for distinctive causes.

Before implementing, make sure you do not have a site that is fairly large in width. The maximum widget of you website content should not be more than 700px, so users can easily enjoy the video playing in the background. For additional modifications, you can make your website a bit of transparent to provide more clear video appearance.

How to Embed a YouTube Video as page Background in Blogger:

The first thing you need to do is to login into your Blogger.com account. After logging in select a blog on which you would like to install the YouTube video in the background. Now go to Template >> Edit HTML >> Search for the </head> tag and just above it paste the following code.

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js' type='text/javascript'/>
<script type='text/javascript'>
//<![CDATA[
/* jQuery tubular plugin
|* by Sean McCambridge
|* http://www.seanmccambridge.com/tubular
|* Copyright 2012
|* licensed under the MIT License
|* Enjoy.
|*
|* Thanks,
|* Sean */
var videoWidth = 853;
var videoRatio = 16/9;
var defaultDiv = 'wrapper-video';
jQuery.fn.tubular = function(videoId,wrapperId) {
wrapperId = (typeof(wrapperId) == undefined) ? 'wrapper-video' : wrapperId;
t = setTimeout("resizePlayer()",1000);
jQuery('html,body').css('height','100%');
jQuery('body').prepend('<div id="yt-container" style="overflow: hidden; position: fixed; z-index: 1;"><div id="ytapiplayer">You need Flash player 8+ and JavaScript enabled to view this video.</div></div><div id="video-cover" style="position: fixed; width: 100%; height: 100%; z-index: 2;"></div>');
jQuery('#' + wrapperId).css({position: 'relative', 'z-index': 99});
var ytplayer = 0;
var pageWidth = 0;
var pageHeight = 0;
var videoHeight = videoWidth / videoRatio;
var duration;
var iframe = '<iframe id="myytplayer" width="' + videoWidth + '" height="' + videoHeight + '" src="http://www.youtube.com/embed/' + videoId + '?autoplay=1&controls=0&modestbranding=1&showinfo=0&hd=1&iv_load_policy=3&version=3&wmode=transparent&loop=1&playlist=' + videoId + '" frameborder="0" allowfullscreen></iframe>';
jQuery('#ytapiplayer').html(iframe);
jQuery(window).resize(function() {
resizePlayer();
});
return this;
}
function onYouTubePlayerReady(playerId) {
ytplayer = document.getElementById("myytplayer");
ytplayer.setPlaybackQuality('medium');
ytplayer.mute();
}
function resizePlayer() {
var newWidth = jQuery(window).width();
var newHeight = jQuery(window).height();
jQuery('#yt-container, #video-cover').width(newWidth).height(newHeight);
if (newHeight > newWidth / videoRatio) {
newWidth = newHeight * videoRatio;
}
jQuery('#myytplayer').width(newWidth).height(newWidth/videoRatio);
}
//]]>
</script>

<script type='text/javascript'>
//<![CDATA[
$().ready(function() {
$('body').tubular('71BLn00VN_w','wrapper-video');
});
//]]>
</script>

After pasting the above coding, again in the template look for <body> open tag and just below it add this small piece of code. However, if you are unable to find <body> tag then try searching <body expr:class='&quot;loading&quot; + data:blog.mobileClass'> or similar piece of code.
<div id='wrapper-video'>

Since, we have added a open DIV id, its our job to close it properly otherwise the template would pop errors. So now search for the </body> ending tag and just above it paste this code.

</div> 

Important: Do not forget to replace 71BLn00VN_w  with the ID of YouTube video, the ID are the characters that appear at the end of the URL. To provide you assistance we have attached a screenshot below. Once everything is done, Save the template.


Congratulations; You have successfully added a YouTube Video in the background of you blogger site. Go and preview your website to see if everything is working just fine.

We hope this tutorial may have helped you in learning how to add YouTube Videos in blogger. It is essentially awesome thing to be added in your blogger enabled site. Firstly makes your product attractive and second you have nothing to loose.
Learn more »

Most Popular Effective Top Email Marketing Services

With the increasing competition among businesses today, it has become absolutely imperative for businesses to discover more effective ways of making their products and services more competitive. This has led to the invention of a wide range of business marketing techniques. One of them is email marketing.

This form of marketing has proved to be quite effective in promoting products and services. Email marketing is basically a special way of sending direct electronic mails to potential customers. These emails are designed for commercial purposes as they are structured in a promotional way. You can also make your business more competitive by hiring the best email marketing service. Fortunately, there are different types of email marketing that you can use for your business.

Always bear in mind the fact that, your email marketing campaigns will only work when you employ the best email marketing service. With this in mind, you should find time to familiarize yourself with the latest email marketing services. Try to understand what each service is capable of. That way, you will be in a position to pick the one that suits your email marketing needs.


Best Email Marketing Services


Remember, the email marketing service you choose should be able to provide you with quick and impressive results. Here are ten of the most effective email marketing services that you will find in the market.

    1.Mail Chimp


This service is a special program that is designed to help marketers design their email newsletters. It can be such a daunting task to design fresh email newsletters every now and then. But since you want your target customers to have confidence in you, you have to keep providing them with fresh and relevant newsletters every so often.

In order to accomplish this, you need a special tool that will give you a chance to design high-quality newsletters for your email marketing campaigns. You shouldn’t worry because Mail Chimp will give you the best email marketing service. Furthermore, it will help you to share your newsletters on different social networking sites. It also matches with the existing email marketing services without a hassle.

    2.Campaign Monitor


When you are creating your email marketing messages, you need an effective tool that will help you to create the most attractive and captivating messages. Furthermore, you need a program that will help you monitor your email campaigns more effectively. Fortunately, you can perform these tasks using the Campaign Monitor. This program is designed to offer campaign designers the best email campaign service. It will help you to monitor results and manage subscribers.

    3.Stream Send

With Stream Send, you will be able to design your email newsletters and send them to different targeted recipients at once. Moreover, this service helps email marketers to ensure that the email is sent to the right recipient. You will also have a chance to monitor the results of your email marketing campaigns. It is always good to check how effective your email marketing processes are so that you can make the necessary adjustments. Although working hard is more promising, you should be a little smarter. Use the best email marketing service such as Stream Send.

    4.Mad Mimi


In order to succeed in your email marketing campaigns, you have to ensure that your email newsletters are attractive and relevant to the targeted audience. The good thing is that there are several tools that can help you to create and dispatch email marketing newsletters that are simple, attractive and fresh. One of these tools is Mad Mimi. This service has proved to be quite effective in helping marketers design quality email newsletters.

    5.Bench Mark


Every email marketer hopes to run marketing campaigns that are successful and easy on their pocket. But the question is: How do you do this? Well, it is very simple; just find the best email marketing service that can enable you to create high-quality newsletters without any financial setbacks. Fortunately, you can now achieve this by using Bench Mark. It is among the best email marketing services on the market right now.

    6.Get Response


This service helps you to design and send professional newsletters to your targeted recipients. Furthermore, it will enable you to follow up on the newsletters to ensure that the intended recipients received them. That way, you are assured to get the best results. It can be very disappointing to send loads of newsletters and you fail to get a single reply. That is why you need a reliable and effective email marketing service such as Get Response.

    7.Constant Contact


As an event organizer, you should stay ahead of your competitors by ensuring that your events are properly marketed online. The best way to achieve this is to use a professional email marketing service such as Constant Contact. This is the best email marketing service, especially for companies that want to promote their events. It helps to design, list, and promote events. What is more, you can use it for 60 days without paying a dime.

    8.Graphic Mail


This is email marketing service is designed for marketers and resellers who want to promote their products or services on different platforms including mobile devices. It will therefore allow you to send mobile texts to the people you want to attract to your business. It is also easy to integrate with other marketing services.

    9.Boomerang


This service is designed to help marketers and resellers create their own email marketing newsletters. Another aspect that makes it the best email marketing service is the fact that it is available for free trial. It is known to offer impressive results.

   10.iContact


This service is known to offer reliable email marketing solutions to all users. At the moment, iContact has more than 650,000 users around the world. What is more, it is available at a pocket-friendly price. It offers a simple and effective way to create and distribute newsletters for marketing purposes. You can also find online assistance whenever you encounter a problem. This makes it the best email marketing service
Learn more »

Blogging Tools For Keyword Research

When it comes to SEO optimization, one of the most valuable and important elements is the so-called keyword research. Search marketing field is often considered as very hazardous, since the competition is merciless and if you want to be up-to-date you are supposed to optimize your business blog or website constantly. Today, unlike the traditional way of advertising, SEO optimization has become something more than just attracting new visitors to your website and trying to sell your products. It is about attracting the right customers. This way you are able to target your clients and learn more about them. Keyword Research Tools give you this opportunity. You are able to respond to the constantly changing market conditions and offer products and services that the average web searcher is seeking. So here are some of the most useful keyword research tools.

Google Search box dropdown:


Google Search box dropdown
This is one of the most under-used keyword research tools. When you start typing, Google will show you the most common phrases that are currently popular with web searchers. In fact, this is what differentiates this tool from the other ones. Although it does not give you a specific information about the value of the particular keyword you are suggesting, it immediately gives you the data that's currently popular with users.

Keyword Spy:

This tool is one of the most comprehensive ones in our list, since it gives you plenty of useful information for free. Except for keywords, it offers a lot of additional data, suggests similar keywords and misspelling. And if you want to get even more information, you can get the paid version of the tool.

Bing Keyword Research Tool:

Although Google is the biggest and the most popular search engine, it is not the only one. Bing's most famous keyword research tool offers serving up suggestions, based on language, country and even region. This can be very useful for targeting your market and finding the right group of customers.

Word Tracker Keyword Questions:


Word Tracker Keyword Questions
This tool gives you the opportunity to see the questions that web searchers have asked using your keywords. This can be extremely useful when writing your website content since it gives you data about the type of information your potential visitors would like to learn more about. You can write articles that answer these questions. However, sometimes the suggestions, that this keyword research tool gives, are a bit messy. However, you will be able to get the essence.

Ubbersuggest:

If you want to get the suggestions from the Google search box, Ubersuggest is the best solution for you. It will go out and get these suggestions for you, giving you the opportunity to choose from image search, web search etc.

Yahoo Clues:


Yahoo Clues, Google search results
This tool allows you to get some specific information based on demographic researches, age etc. You can find out whether your services or products attract more women or men. Also, you will be able to understand the specific age group, interested in your products.

Keyword Research Tools are the basis of the entire SEO optimization of your website. They give you the chance to stand out from the competition and take advantage of the great marketing opportunities that Internet advertising gives you.
Learn more »

Kaspersky Internet Security 2014

Install Kaspersky Internet Security 2014 Trial


The first thing you have to do is install the 30 trial day of Kaspersky Internet Security 2014 or AntiVirus 2014. So, click one of the next buttons to chose what product you prefer. When you click it. it will start downloading the Setup. When completed, run the .exe file and install it.
Download : Kaspersky Internet Security 2014
Download : Kaspersky AntiVirus 2014 
Download : Kaspersky Serial Keys

Activating 3 months trial


The Kaspersky that you installed in your PC, only has 30 days to use. But I have one good news. There is available a key that provides you 91 days trial. How I do that?
→ Click in Enter activation code
→ Click in Activate application
→ Enter the next code. Select it, right-click, Copy. Then in KIS windows, right-click in box and Paste
The code is: QCGUH-J8FF6-33WGA-UBY62
→ Click Activate
→ Wait a moment ... when done it will appear a message saying that activation was successfully done. You have now 91 days to use Kaspersky.


After 91 days ...


Now is time to use a Trial Reset program. Before you download it, you may disable the Kaspersky Protection. For that, right-click in Kaspersky icon in notification area like the next image. It will make appear a context menu. Click Pause Protection. It will appear a new window. Select the first option and then more than 5 minutes. You can also chose the third option Pause. Is the same. Click in Pause Protection button

Now, we have to disable the Self-Defence In the main window, go to Settings < Additional < Self-Defense Uncheck the box and click Accept in the MessageBox that will show up. Right-click in Kaspersky icon in notification area like the next image. It will make appear a context menu. Click Exit.
Before you continue, save and close all your work
Now we are ready to reset the trial of Kaspersky. Download the activator here, unzip and run the .exe file
Remember it must be run as administrator. The activator is in russian but no problem. Is easy :)
Click the first button like in image. It will appear a MessageBox. When you click YES and Windows will restart.

Now that windows restarted, open the Main Window of Kaspersky. It will say that you don´t have a licence. Easy! Paste again the key of 91 days trial and you will get it again. Follow the steps I showed in Activating 3 months trial section.
Learn more »

How To Use Google Keyword Planner Tool For Keyword Research?

Google is basically a search engine and provides the best results to its worldwide users for last 15 years. Apart from being a major search engine, it also manages a huge number of other free and paid products such as Gmail, Chrome, Feedburner, Blogger, YouTube, Adsense, Adwords and many more. Within last few years, Google introduced many new services and closed some of its products too. And the most recent and major change in Google products is; replacing Google Planner tool over Google Keyword Tool.
Keyword Planner Tool
GKT was one of the best free tools available online for doing Keyword search. It was used by millions of webmasters and web marketers for keyword research. But now it has gone far away, and you’ve to be and you must be familiar with the new Planner Tool which I’m going to reveal in this post further.

What was Google Keyword Tool?

Google Keyword tool was simply a tool used for keyword researching. GKT was used by webmasters and marketers to find the best keywords for their business which are searched mostly on the internet. And If you know Google Adword which is an advertising network managed by Google then you might have come across GKT as well, this tool was available for all Adword users, it was absolutely free to use and had a very simple and clear interface. You could find the local and global monthly searches for a certain keyword very easily. And it could also provide the approximate CPC (Cost Per Click) rates for that specific keyword.

What is Google Keyword Planner?

On 27th August, 2013, Google retired its GKT and replaced that with brand new Google Keyword Planner tool, which we are discussing via this post. GKP is similar to GKT which will provide you more relevant, close and deep insights about the keyword you are searching for. However, there were many features in GKT, which are not included in GKP, those features are either removed or skipped for a while of time by Google in GKP. Now you’ll have to first insert the Keyword and then you’ll have to enter the bidding amount and your daily budget for a certain keyword and after that you’ll see closer results and CPC rates for that keyword. It’s a kind of tool for advance users and basic users will face some difficulties while using it right now. However, you’ve to be familiar with it as soon as possible, because it’s the future of keyword researching.

How to use Keyword Planner?

Just go to your Google Adword account and you’ll find this tool under Tools and Analysis tab, click that tab and in the list of options click “Keyword Planner”, now you’ll just see following three options:
  • Search for Keyword and ad group ideas
  • Enter or Upload keywords to see how they perform
  • Multiple keyword lists
Keyword Planner Tool
So all these three options you can use while using GKP, and keep in mind that you must be logged in to Adword account in order to use this tool. While for Google Keyword Tool (Previous one) you didn’t need to login to your account.

So the first option “Search for Keyword and Ad groups ideas” is used to first search a desired keyword and then find a list of keyword group ideas. For example if you searched for a keyword like “SEO” you’ll find a lot of keywords related to SEO and vice versa.
Moreover, if you want to just search a single keyword and its monthly searches etc then use the second option which says “Enter or Upload Keywords to see how they perform”. You can just enter your keyword and find the estimated CPC and searches etc upon entering a bidding amount and daily budget for that keyword by yourself in the top 2 text fields. You can also upload keywords if you have them in a text file.
And for multiple keywords you can always use the last option, which is rarely used by basic users like me and you :P .

Why Google replaced this tool?

To be honest, I don’t exactly know why they did this cruelty. But being a user and webmaster I’ve been keeping eye on Google changes, and the recent change seems to be working more closely with Adword advertisers, because this tool has a lot of new features for advertisers such as targeting keywords and traffic on regional and city bases. While Google mostly doesn’t care of free users, so previous tool was better for free users and this tool is more better for active Adword advertisers. So we are tossed again by Google. But what can we do? Nothing. Just enjoy the new tool. Stay Happy. :D
Learn more »

7 Free Plagiarism Checker Tools

One of the ethical issues that bloggers should avoid like plague is Plagiarism. The latter can be defined as any actions that involve copying content from another site or source, without citation. Exemptions to plagiarism are generic information or common knowledge that almost every blogger knows. For example, saying that SEO is an important part of blogging without citing anyone is not plagiarism because almost every blogger knows about it.

Google does not like plagiarism. If you committed this wrong doing, it would mean compromising your page ranking. The problem is plagiarism can also be done unintentionally. This means that you have no intentions of doing it yet you are guilty of it. To ensure that your work does not have plagiarism issues, the internet offers free tools to check your post against plagiarism.

                Free Online Plagiarism Checker Tools

plagiarism checker tools

                                         Credit: www.business2community.com

1. Plagiarism Checker by Small SEO Tools
This is an online plagiarism checker offered by smallseotools.com. You do not have to download any program. Simply copy and paste your content and click “check for plagiarism button.” If phrase or sentences becomes red, it means that it already exists online which means that you have to paraphrase it.

2. Viper, the Anti-Plagiarism Scanner by Scanmyessay.com
I have been using viper for quite some time and viper is pretty good in searching plagiarism. However, unlike the first tool, this requires installing free software from them and registering for new account. So this might be time consuming at first compared to using the first tool.

3. The Plagiarism Scanner by Dustball.com
This plagiarism scanner can be used online similar to plagiarism checker by Small Seo Tools. They offer both free and paid anti-plagiarism services.

4. Plagiarisma.net
Offers free plagiarism scanner that can be used online and supports 190plus languages. I tried to register but I got some problems signing up. Perhaps it is only me. Nevertheless, you can still use it without registration but only limited version is available for those users who are not registered.

5. Plagium.com
This is an online plagiarism checker that can be used for free. However, if you want deep search, certain fees apply. You may also donate to their team since maintaining an online plagiarism scanner is costly.

6. Duplichecker.com
Another trusted plagiarism tool is duplichecker. On the other hand, you are only allowed to use it once a day if you want their service for free.

7. Copyscape.com
An anti plagiarism tool that only requires you to post the URL of your article to check for plagiarism. Unlike Plagium and Plagiarism, it does not check documents or files for plagiarism, only articles on the web.

Do you know any free plagiarism checker tools that is not mentioned in this article? Please share it in the comment section below and share your experience about it.
Learn more »

Google Search has been Changed

Google the giant search engine as well as most visited site underlined it's new look. The new Google changes visible in its' revamped logo and redesigned navigation bar. This fresh look has sexy appeal than before it was.


The major changes take place in the navigation bar. Moreover the dark color scheme of navigation bar has been removed. Instead they have added a simple menu button for navigation. The design of  menu button looks like the clone of the menu button of the Android OS. Revamped new logo looking quite similar to the logo of ebay.com.

Pros

  • Minimalist fresh look
  • No dark colored object on homepage.
  • Relatively more space in the top (In the future Google might use it to display feeds)
  • One click to share anything on Google+ (to making user more active on Google+)

Cons

  • You have to click twice in case want to reach toward extra services (out of first impression on the menu tab).

Let's visit Google to see revamped look.
Learn more »

Popular Posts Widget With Multi Colored Style



To add popular posts widget with multi-color display like the above? Then Just follow our tutorial:
 
First Step:
  1. Login to your Blogger account.
  2.  
  3. Goto template Choose Edit HTML >> Find the code  ]]> </ b: skin>
  4. Copy and paste below code before ]]> </ b:skin> 
  5.  
# PopularPosts1 ul li a: hover {color: # fff; text-decoration: none}
# PopularPosts1 ul li a {-webkit-text-size-adjust: auto;-webkit-text-stroke-width: 0px; color: # 333333; display: block; font-family: Georgia, 'Times New Roman', Times , serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; margin: 40px 0px 0px 0px; min-height: 30px; orphans: 2; padding: 0px; text-align:-webkit-auto; text-decoration: none! important; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word -spacing: 0px;}
# PopularPosts1 ul li
# PopularPosts1 ul li: first-child: after, # PopularPosts1 ul li: first-child + li: after, # PopularPosts1 ul li: first-child + li + li: after, # PopularPosts1 ul li: first-child + li + li + li: after, # PopularPosts1 ul li: first-child + li + li + li + li: after, # PopularPosts1 ul li: first-child + li + li + li + li + li: after, # PopularPosts1 ul li : first-child + li + li + li + li + li + li: after, # PopularPosts1 ul li: first-child + li + li + li + li + li + li + li: after, # PopularPosts1 ul li: first -child + li + li + li + li + li + li + li + li: after, # PopularPosts1 ul li: first-child + li + li + li + li + li + li + li + li + li: after { position: absolute; top: 10px; right: 5px; border-radius: 50%; border: 2px solid # ccc; background: # 353535;-webkit-box-shadow: 0px 0px 5px # 000;-moz-box-shadow : 0px 0px 5px # 000; width: 30px; height: 30px; line-height: 1em; text-align: center; font-size: 28px; color: # fff} # PopularPosts1 ul li: first-child + li + li + li + li + li + li + li {background: # DF01D7; width: 90%}
# PopularPosts1 ul li: first-child + li + li + li + li + li + li + li: after {content: "8"} # PopularPosts1 ul li: first-child + li + li + li + li + li + + + li li li {background: # B041FF; width: 90%} # PopularPosts1 ul li: first-child + li + li + li + li + li + li + li + li: after {content: "9"} # PopularPosts1 ul li: first-child + li + li + li + li + li + li + li + li + li {background: # F52887; width: 90%} # PopularPosts1 ul li: first-child + li + li + li + li + li + li + li + li + li: after {content: "10"} # PopularPosts1 ul li: first-child + li + li + li + li + li {background: # 7ee3c7; width: 90%} # PopularPosts1 ul li: first-child + li + li + li + li + li: after {content: "6"} # PopularPosts1 ul li: first-child + li + li + li + li + li + li {background: # f6993d; width: 90%} # PopularPosts1 ul li: first-child + li + li + li + li + li + li: after {content: "7"} # PopularPosts1 ul li: first-child + li + li + li + li {background: # 33c9f7; width: 90%} # PopularPosts1 ul li: first-child + li + li + li + li: after {content: "5"} # PopularPosts1 ul li: first-child + li + li + li {background: # c7f25f; width: 90%} # PopularPosts1 ul li: first-child + li + li + li: after {content: "4"} # PopularPosts1 ul li: first-child + li + li { background: # ffde4c; width: 90%} # PopularPosts1 ul li: first-child + li + li: after {content: "3"} # PopularPosts1 ul li: first-child + li {background: # ff764c; width: 90 %} # PopularPosts1 ul li: first-child + li: after {content: "2"} # PopularPosts1 ul li: first-child {background: # ff4c54; width: 90%} # PopularPosts1 ul li: first-child: after {content: "1"} # PopularPosts1 ul {margin: 0; padding: 0px 0; list-style-type: none} # PopularPosts1 ul li {position: relative; margin: 6px 0; border-radius: 25px 25px 0px 0px ; border: 2px solid # f7f7f7;-webkit-box-shadow: 3px 3px 3px # 000;-moz-box-shadow: 3px 3px 3px # 000; padding: 10px}
  
Then save it.
 
Second Step:
  1. Goto Layout >> Then select add gadget>>Then Select Popular Posts Widget >> uncheck image thumbnails and captions, select how many posts you want to display.
  2.  
  3. Save It and see the results!
Learn more »

How To Change Select Text Color On Blogger



Hello Friends Today I am Gonna Show You How To Change Select Text Color Code On Blogger.

Open Your Blogger Account

Click On Template

And Click On Edit HTMl

Now Find The Below Code You Want To Find The Code Press CTRL + F

</head>

After Finding The Code Paste The Below Code After </head>

<style type="text/css"> ::selection {background:#cc0000;color:#ffffff;} ::-moz-selection{background:#cc0000;color:#ffffff;} code::selection {background: #333333;color:#ffffff;} code::-moz-selection {background: #333333;color:#ffffff;} pre::selection {background: #44ceff;color:#ffffff;} pre::-moz-selection {background: #44ceff;color:#ffffff;} </style>
Now Save Your Template

Check Your Blog Now


Please Leave Your Question And Comment Below.
Learn more »

How to Transfer Android Apps via Bluetooth

I have recevied requests from many people that they are unable to send andriod apps from one phone to another via bluetooth so I have foud this trick to transfer mobile app from one phone to other hope that you all are going to like this. 
Method: 

There are two steps in transferring android apps using Bluetooth. 


→ Create APK files using Astro 
→ Transfer APK files using Bluetooth Transfer App. 

Create APK files using Astro: 

→ Download & install Astro on your android phone. 
→ Run the application. 
→ Press the settings soft key and choose “Tools” option. A pop-up will be opened. 
→ Now, select “Application Backup” and wait for Astro to generate a list of all the apps installed on your mobile.



→ From the list, select the android app that you’d like to send via Bluetooth to another mobile and click the “backup” button to create the APK file. 
→ Once the backup is finished, press the “back” key to return to Astro main screen. 
→ Navigate to your SD card -> Backups -> Apps to find the APK files created by Astro.


 Transfer APK files using Bluetooth Transfer App: 


→ Download, Install and Run Bluetooth Transfer App (you require this app as the Bluetooth access to APK files is blocked by default). 
→ Once the app is opened, go to SD card -> Backups -> Apps and select the file you want to send to another phone and press the “Bluetooth” button (search for the other device and send it). 



→ The receiver can now be able to install the android app on his mobile phone without any problem.
Learn more »