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.

0 comments:

Your comments always welcome

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.

0 comments:

Your comments always welcome

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.

0 comments:

Your comments always welcome

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

7 comments:

Your comments always welcome

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.

0 comments:

Your comments always welcome