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

Thursday, 20 October 2016

7 Reasons Your Site Ranked Dropped

Google Bots! Sometimes difficult to comprehend, its ability are more than we can visualize, as a site owner, a proper understanding of how they work will take you a long way in ranking.
Preventing Google Search result ranked reduction

 Before listing out some puzzling reasons Google might diminish your site rank, it's appropriate we fully understand what we are talking about here.

So What The Google Ranking?

In a simple definition, it's a way of measuring the importance of a website. Don't get it? OK
It's an algorithm used by Google to rank sites in search results by search engines.
That should give a clear explanation of what Google ranking is.


Explain Google Search Rank Scaling Down

Is simply when a highly or higher ranked site drops it's worth resulting to poor appearances in Google searches. The value and authority it lessened.
By now you might have gathered what this post is all about. Let's get to the reason Google might diminish your site search ranking.



Google will decrease your site ranking if:


Your Site Is Pass Over:
Believe it or not, Google bot never take it likely with sites left unattended for an extended period. Has more than enough posts to carry you for a long time without regular updates as you are supposed to will condition your site, inappropriate to Google bots and eventually reduce your website ranking.
Updating at least once in a week have what it take to preventing Google search rank pruning.

Your Site Isn't Mobile Friendly
As you know or might have read elsewhere, Google is trying to put the mobile first, aside from that, if your run through your platform analytics, you might find the mobile platform more than the Desktop and Tablets. Am guessing you know what that designate?

If your site isn't mobile-friendly, the chances of your site Google search rank demolished is high. The use of the mobile device has beat the use of desktops and laptops computers by over 70% due to the introduction of highly/more capable smartphones. Don't let cell phones bring your site down.

Also Read: Tips To Improve SEO In Blogger

Alternate Templates Frequently
Yes, plenty of site owners undertake it, especially the design freaks, I have seen instances, where site owners go online, download third party templates and use it on their sites(Blogger).
Using a well created, responsive and SEO friendly template, won't get you in trouble, only when there is a constant shuffle of templates,  that will get your site a Spam spotlight.

If you are a site owner who ain't easily satisfied with its appearance, end up using over four templates in a week and continuously without concern. About Google search bots which are roaming around your template every time.
You should hire a web designer to make your site look just as perfect as you want it and avoid Google search rank decreased.

There Is Regular Change Of Keywords
Do your keyword research and keep that way. Regular change of keyword gets search engine bot confused on what your page is about and make them establish a distrust thereby leading to your site deserted.
Do I need to say more? Just keep it real.

Have Too Many Duplicate Contents 
Content Duplication and Manipulation gives a negative impression to Google bots. "Duplicate content refers to substantive blocks of content within or across domains that either completely matches other content or are appreciably similar." Stop content duplication and manipulation.

You Don't Add "no follow" Attribute To Affiliate Links
They don't smile to affiliate links in a blog post, especially when they are way too many. If this is your aspect(affiliate marketing), then read carefully to avoid derank or penalty from Google search bots or any other search engine.
When writing a post for a product you want to promote,  placing the links(affiliate) in your post directly can get you in trouble.
Except you add a "no follow" attribute to the links, this way Google bots won't be able to follow those links making it safe to use affiliate links in blog posts.

Synopsis, Keeping it real, regular reading of Google rule and regulations and doing the right thing is the ultimate method of keeping your site healthy and High ranked in Google search results.

Read More

Monday, 10 October 2016

How to Remove Label Message In Blogger.

"Showing Post With Label" Message in blogger

How To Remove "Showing Post With Label" Message in Blogger


It is set a default for any Blogspot platform user, the message Showing post with label xx xx" appears when your readers search your blog via the label. It is pretty useless, unprofessional and annoying if you wish to remove this feature from your blog, follow the steps below.

Steps to Removing "Showing post with label ... show all posts."


==>log into blogger.com dashboard > Template >> Edit Html (save template if required)

==> Click any point in the template and Hit Ctrl+F keys in window, Cmd+F keys for Mac.

==> Search for the code below using the search box
<b:includable id='status-message'>

==> When found, click on the little black arrow sign by the left to expand it.
==> The below is what you will need to remove alongside the first one as well.
<b:includable id='status-message'>
      <b:if cond='data:navMessage'>
      <div class='status-msg-wrap'>
        <div class='status-msg-body'>
          <data:navMessage/>
        </div>
        <div class='status-msg-border'>
          <div class='status-msg-bg'>
            <div class='status-msg-hidden'><data:navMessage/></div>
          </div>
        </div>
      </div>
      <div style='clear: both;'/>
      </b:if>
    </b:includable>
Removing showing post with label in blogger

==> Replace with this
<b:includable id='status-message'>
<b:if cond='data:navMessage'>
<div>
</div>
<div style='clear: both;'/>
</b:if>
</b:includable>
==> Save your template, you done, visit your site, click on any label, the "Showing post with tag" message Should be gone.
Read More

Sunday, 9 October 2016

How To Break Post In Multiple Pages In Blogger (Post Pagination)

You wish to divide post into different pages, this one is for you, you might have written a very long post and wish to divide the post into different page to make your readers more engaged and get less bored with your writing, using Post Pagination is what you need to this awesome styling.

Add-Post-Pagination-In-Blogger


Apart from having a very long post written, there may be lots of other reason you might want to use this pagination for blogger, like making it easier for google to crawl it, that's to say it's an SEO factor also to increase your readers interest.

Lets get to the  steps in Adding awesome Post Pagination For Blogger.

Steps To add Pagination in Blogger

==> Log on to blogger.com > Template >> Edit Html, save a copy of your template if required.
==> Make sure your template has jquery, if not kindly add it, the code is right below you.

<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>

Make sure its not double in your template, it can give negative effects.

==> For the next step search for
]]></b:skin
==> Add the CSS code below just above the ]]></b:skin tag
.post-pagination {
    margin: 40px auto;
    text-align: center;
    width: 100%;
 float:left;
}
.button_1, .button_2, .button_3 {
    border: 2px solid #f4655f;
    font-weight: 900;
    padding: 6px 36px;
    color:#f4655f;
    transition:ease 0.69s !important;
}
.button_1:hover, .button_2:hover, .button_3:hover {
    background: none repeat scroll 0 0 #f4655f;
    color: #fff;
    text-decoration: none;
}

==> Search
</head>
==> Paste the script below just about the </head> Tag

<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('.button_1').click(function(){
jQuery('.content_1').fadeIn('slow');
  jQuery('.content_2').fadeOut('fast');
jQuery('.content_3').fadeOut('fast');
jQuery(this).css('background','#F4655F');
jQuery(this).css('color','#fff');
jQuery('.button_2').css('background','#fff');
jQuery('.button_2').css('color','#F4655F');
jQuery('.button_3').css('background','#fff');
jQuery('.button_3').css('color','#F4655F');
return false;
});
jQuery('.button_2').click(function(){
jQuery('.content_1').fadeOut('fast');
  jQuery('.content_2').fadeIn('slow');
jQuery('.content_3').fadeOut('fast');
jQuery(this).css('background','#F4655F');
jQuery(this).css('color','#fff');
jQuery('.button_1').css('background','#fff');
jQuery('.button_1').css('color','#F4655F');
jQuery('.button_3').css('background','#fff');
jQuery('.button_3').css('color','#F4655F');
return false;
});
jQuery('.button_3').click(function(){
jQuery('.content_1').fadeOut('fast');
  jQuery('.content_2').fadeOut('fast');
jQuery('.content_3').fadeIn('slow');
jQuery(this).css('background','#F4655F');
jQuery(this).css('color','#fff');
jQuery('.button_1').css('background','#fff');
jQuery('.button_1').css('color','#F4655F');
jQuery('.button_2').css('background','#fff');
jQuery('.button_2').css('color','#F4655F');
return false;
});
});
</script>

==> Save your template,we are almost done.

==> Not go to Post > New post, click the Html button at the left corner around your post title to switch, past the code below there.
<div class="content_1">
Add Content Here
</div>
<div class="content_2" style="display: none;">
Add Content Here
</div>
<div class="content_3" style="display: none;">
Add Content Here
</div>
<div class="post-pagination">
<a class="button_1" href="#">1</a>
<a class="button_2" href="#">2</a>
<a class="button_3" href="#">3</a>
</div>

Replace " Add Content Here" with the body of the post you want in a particular page.

Click publish and go over to your post, you will see you post divided into pages. Post Pagination for blogger have been added to your content.
Read More

Friday, 7 October 2016

How To Add Emoticon/Smileys In Blogger Comment System

Make commenting fun for your readers by adding smileys for their to use in your blog. Although Blogger doesn't support using smileys in comments, we are going to share some easy and safe steps to adding it in blogs.
 The emoticons are called the Kolobok in Blogger/blogspot.

Smiley and Emoticons For Blogger comment.


Follow the steps below to spice up comments for your blog readers

Also Read:
How To Fix Comment Box Not Showing in Mobile | Blogger 
How To Add Floating Share Buttons To Blogger


Adding Lolobok Emoticons/Smileys In Blogger Comments


Step 1: Enter blogger.com dashboard and select blog
Step 2: Locate template > Edit Html
Step 3: Click any point in the template and hit the ctrl+F keys for window, Cmd+F for mac to open a search .
Step 4: Search for the tag
</body>
Step 5: For this next  step, there are two code below select the right one for your coment box and add just above the closing body tag.

a) If your comment has no reply button, means you are using the previous commenting system, add this code below

<!--kolobok-smileys-->
<script type='text/javascript'>
//<![CDATA[
function replaceText(){if(!document.getElementById){return;}
bodyText = document.getElementById("smileys");
theText = bodyText.innerHTML;
theText = theText.replace(/:\)\)/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjuui6J289T6dQlgEr0rsHVI4Fpvf3uwTbm8R4Kgruup5Y1Bn6T8uLcMMgZfkdvDG0sLoiG_4BF6wkcIX0R5sXUhBqGEUayGXwzboXnpxuoT-LBUjjG5ucHV0H038K7KVxHqHQvHg1A1fA/s1600/taunt.gif'/>");
theText = theText.replace(/=d&gt;/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhJj2AVq_6pYaKDuKTxqZi9oadqSnMKEkqOc3bZy2WEb5ZaJ5zsuJGIJkvvqLVBMAg4Q6elqrgw6vep0znox4SlI4HlhTMIlM1tX1O9NxwcxLt8K4X2zzg_IgQ94XEeyZDXufPcKYDepVA/s1600/suicide.gif'/>");
theText = theText.replace(/:d/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhIpli6C98WOg6V_fuphtHU72sjwvmjNane9t8rtDKo2ZEaPrSeQtfhjlu8hxtH8FYYRc6mGJhJwQY_nnctvUFN30_Prda5cm5KpDsRF41BbUaTvxc2lN4j1gfjJ-EWZJIGNI3dKvBSX7s/s1600/biggrin.gif'/>");
theText = theText.replace(/:p/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhP3nBidTnFmcIttEQ5-Mmz-yvJ_BS6___a5yJ6BAQhGn0VsBqnBTPGo2q0Vb3KfxVK_YysW6Bm0Ew68ur-bMms2HcwoFccBZzqIXOONoIHmNxBd6bDCGMxIeUgvfcc2xZP4Vn9LxwPliI/s1600/tongue.gif'/>");
theText = theText.replace(/:\(\(/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh2plja5mh_eNq_nXRexMsAnLq58NA1ZGExaUcD6jGADbFjRyEAAoedUAl41clVXzGbJ8JMLlVYwdcJNfYhfQ8bUyCpmwPeWsraJyewsq5RtRG9Sy3EXBAlj3rvv5tyO8D6NYS6juK6qx4/s1600/cry2.gif'/>");
theText = theText.replace(/:\)/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiXEW9AptW6EGJtoE_jhyphenhyphenq2w_U-28RaAgxEAGK2zA_Kv-Y7Rft-IleQi6WIPulsrGru_hkiVlzhkb4i5aQJHqpel7qdurxttJoBY56vIk_5e63RNxPPRwHQtiqzyvh3lMNuFiwy4RSnzqY/s1600/smile3.gif'/>");
theText = theText.replace(/:\(/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj-g0lsgil6QF-R0G1tjzfOwUShZB_QiYp1dPhEowT2ieH1AVZwQhVHSg7BCPtShCy4zRZY05RgrPPMk_WV3bkns4m_8Gtsu81UYj580qSI7n3IilZEoOk2BK1ccUqLMJEZUcJPq_numhQ/s1600/sad.gif'/>");
theText = theText.replace(/:-\?/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi5tcB44gyXz69Ly9jzAD6K7JE9LZBhaqO_pPHEilBNTW68bmlqP21DHIbJaax4gbQULsGfihh8-Z4OXg1jG_zhSIMdP2kVHzDZpkTppAgbUDPP3KcY88RdBA1TrAStCPy-dwoutKr2SME/s1600/think.gif'/>");
theText = theText.replace(/d\(/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLjpH7f77Mjr_TNtzL168nQmX6ax1TtvuyWFbRLmVGEEj8Np9oRjPmzBRP484RfpyJj2kjfyIJiHjA5RGCENlcro40VUFKLIuVwR4ri2pledsZ_OlJjbtm2HEJq7iX1WqV7tpcUGKxHX4/s1600/doh.gif'/>");
theText = theText.replace(/:-o/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhU2tRnWePAFOs-buZMp3MUaS7-spYAv1KSEBKQQNS5Hmj94b29UqJAKo0Lpsrm2sxz8vYdtbtiSHUZAM7AU7GpKECsatcpVR-cJJNEHI7QBTDNPwhm_yd5tMTZTJLf6cXl1E-CCVY75q8/s1600/shock.gif'/>");
theText = theText.replace(/:-f/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgDWRi1uSXArFEXfOk_hK1ai5gly0YevnxmlTxr1GCxtycyIZOgaGJSTdwvAkUr7zXts3Kk1L1Pha44060Ul4I9-HrMc8WcyHE-r37LtNooNkiJkYCULuaUgQYXaFYVGt92upKIpS0N4cE/s1600/flowers1.gif'/>");
theText = theText.replace(/:-ss/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgwNlBw5BG-UPPIrUhP5fzmbzr-inss4AvVCBcXGE8SZHzuQGQBrpCfvPC3iNRAgtMsW0G38ToSDxdNcT3K8sfKAsVb_veamlNjs-GwTpnuMeGRsHPtfkOB00baV25b3oH3dgmcHWk9Qxk/s1600/unsure.gif'/>");
theText = theText.replace(/b-\(/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgYIbJn11J5XijTnWpfhJE8GWitZh-v2HbiNaB5WIJY8UdvhpBLRlvcus7HQq-837jQZdMTtM6D3HRb2DXRrgwc86fZtpbAiDDLICpa9JjDT9CEBCj0Ed8ZkC2Ql6iBrLvIY_6Inhm8rwg/s1600/threaten.gif'/>");
theText = theText.replace(/h-\(/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjECpO1hypm35Iog2V5RJ_fpvo0FsENRyy4xxGQIIL1J1p1AEkgulCYfLZEvXdEyblpD2Cr98n-X-btETUWeRbGXYYKLsCKhkZvIlJ5xHlkanduVG3ienMB6wKCsgtNDbrU19AJjAcGpjo/s1600/help.gif'/>");
theText = theText.replace(/g-\)/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiuq1yxtBTv4ISvDwuV0ygAu-LGc_xY_DOKtm31ixQKZi6TpWPi92ZiZjWIPDfK4tUDD2IZ952MZk4Fbw7HkS5H_xHnB1D_vGWLVerb8Q1KOVpd6PTjh46mX4WiBn5IymP2DOTjJ3I25uM/s1600/good.gif'/>");
theText = theText.replace(/5-\p/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEibJfjaTTcvFlM-KAkfb77ZtQNV4qldBvmaf5hKwqs9a1LAhFN4SvmvHtfrVutM-xVGQiy_8dpMgmRT9CPAqmg-q_8j8UfqGHcUwBQr1NwW5w-Wde_m05G9ajNuYW_EeEt9N_WKJzVexfk/s1600/beee.gif'/>");
theText = theText.replace(/y-\)/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDd6THQo5pZhdOhbEpb_Uk9WnP7sPup38if-Y0M-14RkoyB3yhZCFZg3NAZhYLiN8-FUWO_BGHCQ0wKMljEEkzYlex9imu8L1QjQ1bnU5S0ZuHoo6AcvfbTalD3nFx_k2gJ8mqJYXpTKs/s1600/yahoo.gif'/>");
theText = theText.replace(/c-\)/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhgD_BxVTRFpPUBjGBlBcXg9nPR2Vw2hJl6olkjYvQ4DdPKufoyGEFX50okSY_69LUFR0VhHH4h8ohyphenhyphenOE9EdK0B-CQupSJKk2phvfL_vuuUNp1sheWM73K7MsCM5fk7_kuuIQnFGHfgHYY/s1600/crazy.gif'/>");
theText = theText.replace(/s-\)/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgX7vGmmxkgOq175Dwynyrn9jPSwXQ7gewyYQ78PJZi-BJUmjqVeq3gRa8NvgdLYG1LJcsg1UGIRz3fKElWF3_KW5ZiAjwYuN_iq3EEwVgsbvsiZzeTGxnnn-XlIru-S8piFHkbZQnwV-E/s1600/spiteful.gif'/>");
theText = theText.replace(/d-\)/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhG5fPft98C_mQAZYy14Wm9lVne-ZZhXWQuqQzq_7W4tCrUY4ITLhmFmr5gfcBxREsEECGfCHsywTBlzPoZrPEFI-j_XsvcIp5adMJxwA3DHF7qjc2fEGWoLLD9i6W5INzmfb5PH-_gu1A/s1600/drinks.gif'/>");
theText = theText.replace(/w-\)/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiYAaOu8NMO9dA3LsZcZDJ5Spv15y_Gj6R4SPchaCI0r9-yNq50oUaw_4LqpGopnSXeQ4s23TlUf53oLfBsTqPcBpy6IDph_ZsQPxf8PoMDH2bWbrK8Smox2LvUUwhQs0kjsWNxMSsErg0/s1600/cheer.gif'/>");
theText = theText.replace(/:-\h/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgkdh6UVLEVFkw7UlTDaQrD0D92HHUJIkxsGlg4imPMmWAMoGcyn8jFUATn8iLiSXeZzjEK4ncmtsOCas-QUteo9Lry1mbscelW0cogsPbMGmBL1jtmGvhYneHAa7SzQdbucchnM73swK8/s1600/hi+2.gif'/>");
theText = theText.replace(/:X/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVpi_3fdo6rwSF7mShVlDpsL8APMkW2nVCVYbHbDVmgQrU6OoGxcbJsM-JJ8kq5KLvrlomrqn0onW9kyebgO3lpkRsLqMXqT5JtMtdxMv0LJSsRim5wCxdgca1uVFMQ3dYg5j2IYs_tmk/s1600/give_heart.gif'/>");
theText = theText.replace(/:\-\*/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhkCU29KAKZzo5opmNVVIw3-2KZ-izryqIA0ZdoAgt_d3G6CfLrKeO3lZsLuGw2dxNee3pk7wetZ1eXBBUNLiQdwOjoBSIjDZrM_A4MMcMqNwsx-ThZv30dRirFfRnPK38IYPEUB-HlB8Y/s1600/air_kiss.gif'/>");
theText = theText.replace(/=\)\)/gi, "<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhm1O5gE7pXDug4TXTNEoZh2p76X7sxLycXCq48VoyPS06uXQQA_TRpd4In2GCqdKOyCrRN5ql08siUxqXoppHTNxWXlhfCOFT87QdcppldUmFy-abPgJuPus_8x3aatyiv5FlC8mdT0AY/s1600/rofl.gif'/>");
bodyText.innerHTML = theText;
}
replaceText();
//]]>
</script>
<!--kolobok-smileys-->

b) If you have a threaded Commenting system that has the reply function, use the code below

<script type='text/javascript'>
//<![CDATA[
a=document.getElementById('comment-holder');if(a){b=a.getElementsByTagName("p");for(i=0;i<b.length;i++){if(b.item(i).getAttribute('CLASS')=='comment-content'){_str=b.item(i).innerHTML.replace(/:\)\)/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjuui6J289T6dQlgEr0rsHVI4Fpvf3uwTbm8R4Kgruup5Y1Bn6T8uLcMMgZfkdvDG0sLoiG_4BF6wkcIX0R5sXUhBqGEUayGXwzboXnpxuoT-LBUjjG5ucHV0H038K7KVxHqHQvHg1A1fA/s1600/taunt.gif' alt='' class='smiley'/>");_str=_str.replace(/=d&gt;/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhJj2AVq_6pYaKDuKTxqZi9oadqSnMKEkqOc3bZy2WEb5ZaJ5zsuJGIJkvvqLVBMAg4Q6elqrgw6vep0znox4SlI4HlhTMIlM1tX1O9NxwcxLt8K4X2zzg_IgQ94XEeyZDXufPcKYDepVA/s1600/suicide.gif' alt='' class='smiley'/>");_str=_str.replace(/:d/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhIpli6C98WOg6V_fuphtHU72sjwvmjNane9t8rtDKo2ZEaPrSeQtfhjlu8hxtH8FYYRc6mGJhJwQY_nnctvUFN30_Prda5cm5KpDsRF41BbUaTvxc2lN4j1gfjJ-EWZJIGNI3dKvBSX7s/s1600/biggrin.gif' alt='' class='smiley'/>");_str=_str.replace(/:p/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhP3nBidTnFmcIttEQ5-Mmz-yvJ_BS6___a5yJ6BAQhGn0VsBqnBTPGo2q0Vb3KfxVK_YysW6Bm0Ew68ur-bMms2HcwoFccBZzqIXOONoIHmNxBd6bDCGMxIeUgvfcc2xZP4Vn9LxwPliI/s1600/tongue.gif' alt='' class='smiley'/>");_str=_str.replace(/:\(\(/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh2plja5mh_eNq_nXRexMsAnLq58NA1ZGExaUcD6jGADbFjRyEAAoedUAl41clVXzGbJ8JMLlVYwdcJNfYhfQ8bUyCpmwPeWsraJyewsq5RtRG9Sy3EXBAlj3rvv5tyO8D6NYS6juK6qx4/s1600/cry2.gif' alt='' class='smiley'/>");_str=_str.replace(/:\)/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiXEW9AptW6EGJtoE_jhyphenhyphenq2w_U-28RaAgxEAGK2zA_Kv-Y7Rft-IleQi6WIPulsrGru_hkiVlzhkb4i5aQJHqpel7qdurxttJoBY56vIk_5e63RNxPPRwHQtiqzyvh3lMNuFiwy4RSnzqY/s1600/smile3.gif' alt='' class='smiley'/>");_str=_str.replace(/:\(/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj-g0lsgil6QF-R0G1tjzfOwUShZB_QiYp1dPhEowT2ieH1AVZwQhVHSg7BCPtShCy4zRZY05RgrPPMk_WV3bkns4m_8Gtsu81UYj580qSI7n3IilZEoOk2BK1ccUqLMJEZUcJPq_numhQ/s1600/sad.gif' alt='' class='smiley'/>");_str=_str.replace(/:-\?/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi5tcB44gyXz69Ly9jzAD6K7JE9LZBhaqO_pPHEilBNTW68bmlqP21DHIbJaax4gbQULsGfihh8-Z4OXg1jG_zhSIMdP2kVHzDZpkTppAgbUDPP3KcY88RdBA1TrAStCPy-dwoutKr2SME/s1600/think.gif' alt='' class='smiley'/>");_str=_str.replace(/d\(/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLjpH7f77Mjr_TNtzL168nQmX6ax1TtvuyWFbRLmVGEEj8Np9oRjPmzBRP484RfpyJj2kjfyIJiHjA5RGCENlcro40VUFKLIuVwR4ri2pledsZ_OlJjbtm2HEJq7iX1WqV7tpcUGKxHX4/s1600/doh.gif' alt='' class='smiley'/>");_str=_str.replace(/:-o/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhU2tRnWePAFOs-buZMp3MUaS7-spYAv1KSEBKQQNS5Hmj94b29UqJAKo0Lpsrm2sxz8vYdtbtiSHUZAM7AU7GpKECsatcpVR-cJJNEHI7QBTDNPwhm_yd5tMTZTJLf6cXl1E-CCVY75q8/s1600/shock.gif' alt='' class='smiley'/>");_str=_str.replace(/:-f/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgDWRi1uSXArFEXfOk_hK1ai5gly0YevnxmlTxr1GCxtycyIZOgaGJSTdwvAkUr7zXts3Kk1L1Pha44060Ul4I9-HrMc8WcyHE-r37LtNooNkiJkYCULuaUgQYXaFYVGt92upKIpS0N4cE/s1600/flowers1.gif' alt='' class='smiley'/>");_str=_str.replace(/:-ss/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgwNlBw5BG-UPPIrUhP5fzmbzr-inss4AvVCBcXGE8SZHzuQGQBrpCfvPC3iNRAgtMsW0G38ToSDxdNcT3K8sfKAsVb_veamlNjs-GwTpnuMeGRsHPtfkOB00baV25b3oH3dgmcHWk9Qxk/s1600/unsure.gif' alt='' class='smiley'/>");_str=_str.replace(/b-\(/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgYIbJn11J5XijTnWpfhJE8GWitZh-v2HbiNaB5WIJY8UdvhpBLRlvcus7HQq-837jQZdMTtM6D3HRb2DXRrgwc86fZtpbAiDDLICpa9JjDT9CEBCj0Ed8ZkC2Ql6iBrLvIY_6Inhm8rwg/s1600/threaten.gif' alt='' class='smiley'/>");_str=_str.replace(/h-\(/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjECpO1hypm35Iog2V5RJ_fpvo0FsENRyy4xxGQIIL1J1p1AEkgulCYfLZEvXdEyblpD2Cr98n-X-btETUWeRbGXYYKLsCKhkZvIlJ5xHlkanduVG3ienMB6wKCsgtNDbrU19AJjAcGpjo/s1600/help.gif' alt='' class='smiley'/>");_str=_str.replace(/g-\)/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiuq1yxtBTv4ISvDwuV0ygAu-LGc_xY_DOKtm31ixQKZi6TpWPi92ZiZjWIPDfK4tUDD2IZ952MZk4Fbw7HkS5H_xHnB1D_vGWLVerb8Q1KOVpd6PTjh46mX4WiBn5IymP2DOTjJ3I25uM/s1600/good.gif' alt='' class='smiley'/>");_str=_str.replace(/5-\p/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEibJfjaTTcvFlM-KAkfb77ZtQNV4qldBvmaf5hKwqs9a1LAhFN4SvmvHtfrVutM-xVGQiy_8dpMgmRT9CPAqmg-q_8j8UfqGHcUwBQr1NwW5w-Wde_m05G9ajNuYW_EeEt9N_WKJzVexfk/s1600/beee.gif' alt='' class='smiley'/>");_str=_str.replace(/y-\)/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDd6THQo5pZhdOhbEpb_Uk9WnP7sPup38if-Y0M-14RkoyB3yhZCFZg3NAZhYLiN8-FUWO_BGHCQ0wKMljEEkzYlex9imu8L1QjQ1bnU5S0ZuHoo6AcvfbTalD3nFx_k2gJ8mqJYXpTKs/s1600/yahoo.gif' alt='' class='smiley'/>");_str=_str.replace(/c-\)/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhgD_BxVTRFpPUBjGBlBcXg9nPR2Vw2hJl6olkjYvQ4DdPKufoyGEFX50okSY_69LUFR0VhHH4h8ohyphenhyphenOE9EdK0B-CQupSJKk2phvfL_vuuUNp1sheWM73K7MsCM5fk7_kuuIQnFGHfgHYY/s1600/crazy.gif' alt='' class='smiley'/>");_str=_str.replace(/s-\)/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgX7vGmmxkgOq175Dwynyrn9jPSwXQ7gewyYQ78PJZi-BJUmjqVeq3gRa8NvgdLYG1LJcsg1UGIRz3fKElWF3_KW5ZiAjwYuN_iq3EEwVgsbvsiZzeTGxnnn-XlIru-S8piFHkbZQnwV-E/s1600/spiteful.gif' alt='' class='smiley'/>");_str=_str.replace(/d-\)/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhG5fPft98C_mQAZYy14Wm9lVne-ZZhXWQuqQzq_7W4tCrUY4ITLhmFmr5gfcBxREsEECGfCHsywTBlzPoZrPEFI-j_XsvcIp5adMJxwA3DHF7qjc2fEGWoLLD9i6W5INzmfb5PH-_gu1A/s1600/drinks.gif' alt='' class='smiley'/>");_str=_str.replace(/w-\)/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiYAaOu8NMO9dA3LsZcZDJ5Spv15y_Gj6R4SPchaCI0r9-yNq50oUaw_4LqpGopnSXeQ4s23TlUf53oLfBsTqPcBpy6IDph_ZsQPxf8PoMDH2bWbrK8Smox2LvUUwhQs0kjsWNxMSsErg0/s1600/cheer.gif' alt='' class='smiley'/>");_str=_str.replace(/:-\h/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgkdh6UVLEVFkw7UlTDaQrD0D92HHUJIkxsGlg4imPMmWAMoGcyn8jFUATn8iLiSXeZzjEK4ncmtsOCas-QUteo9Lry1mbscelW0cogsPbMGmBL1jtmGvhYneHAa7SzQdbucchnM73swK8/s1600/hi+2.gif' alt='' class='smiley'/>");_str=_str.replace(/:X/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVpi_3fdo6rwSF7mShVlDpsL8APMkW2nVCVYbHbDVmgQrU6OoGxcbJsM-JJ8kq5KLvrlomrqn0onW9kyebgO3lpkRsLqMXqT5JtMtdxMv0LJSsRim5wCxdgca1uVFMQ3dYg5j2IYs_tmk/s1600/give_heart.gif' alt='' class='smiley'/>");_str=_str.replace(/:\-\*/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhkCU29KAKZzo5opmNVVIw3-2KZ-izryqIA0ZdoAgt_d3G6CfLrKeO3lZsLuGw2dxNee3pk7wetZ1eXBBUNLiQdwOjoBSIjDZrM_A4MMcMqNwsx-ThZv30dRirFfRnPK38IYPEUB-HlB8Y/s1600/air_kiss.gif' alt='' class='smiley'/>");_str=_str.replace(/=\)\)/gi,"<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhm1O5gE7pXDug4TXTNEoZh2p76X7sxLycXCq48VoyPS06uXQQA_TRpd4In2GCqdKOyCrRN5ql08siUxqXoppHTNxWXlhfCOFT87QdcppldUmFy-abPgJuPus_8x3aatyiv5FlC8mdT0AY/s1600/rofl.gif' alt='' class='smiley'/>");b.item(i).innerHTML=_str;}}}
//]]>
</script>

If your comment is threaded Ignore step 6 to 9
Step 6: Find the snippet code below
<b:loop values='data:post.comments' var='comment'>
Step 7: Paste the following line just above the snippet
<div id='smileys'>
Step 8: Find </b:loop> tag and look carefully, it should be located below the code from step 6
</b:loop>
Step 9: Paste the div below after it.
</div>
Step 10: Next, find this code
a) If you are using Previous Commenting System.
<data:blogTeamBlogMessage/> 
You might find this up to four(4) times, stop at the second one.

b)If you are using threaded commenting system search for the line below stop at the second or the fourth occurrence.
<a expr:href='data:post.commentFormIframeSrc' id='comment-editor-src'/>

Step 11: Add the code below just directly after the line
<b:if cond='data:blog.pageType == &quot;item&quot;'><script type='text/javascript'>
//<![CDATA[
function moreSmilies() {
    document.getElementById('smiley-more').style.display = 'inline';
    document.getElementById('smiley-toggle').innerHTML = '<a href="javascript:lessSmilies()">Hide Emoticons</a>';
}
function lessSmilies() {
    document.getElementById('smiley-more').style.display = 'none';
    document.getElementById('smiley-toggle').innerHTML = '<a href="javascript:moreSmilies()">Show Emoticons</a>';
}
//]]>
</script>
<div class='emoticons'>
<span id='smiley-more' style='display: none;'>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiXEW9AptW6EGJtoE_jhyphenhyphenq2w_U-28RaAgxEAGK2zA_Kv-Y7Rft-IleQi6WIPulsrGru_hkiVlzhkb4i5aQJHqpel7qdurxttJoBY56vIk_5e63RNxPPRwHQtiqzyvh3lMNuFiwy4RSnzqY/s1600/smile3.gif'/><div class="emos">:)</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj-g0lsgil6QF-R0G1tjzfOwUShZB_QiYp1dPhEowT2ieH1AVZwQhVHSg7BCPtShCy4zRZY05RgrPPMk_WV3bkns4m_8Gtsu81UYj580qSI7n3IilZEoOk2BK1ccUqLMJEZUcJPq_numhQ/s1600/sad.gif'/><div class="emos">:(</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjuui6J289T6dQlgEr0rsHVI4Fpvf3uwTbm8R4Kgruup5Y1Bn6T8uLcMMgZfkdvDG0sLoiG_4BF6wkcIX0R5sXUhBqGEUayGXwzboXnpxuoT-LBUjjG5ucHV0H038K7KVxHqHQvHg1A1fA/s1600/taunt.gif'/><div class="emos">:))</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh2plja5mh_eNq_nXRexMsAnLq58NA1ZGExaUcD6jGADbFjRyEAAoedUAl41clVXzGbJ8JMLlVYwdcJNfYhfQ8bUyCpmwPeWsraJyewsq5RtRG9Sy3EXBAlj3rvv5tyO8D6NYS6juK6qx4/s1600/cry2.gif'/><div class="emos">:((</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhm1O5gE7pXDug4TXTNEoZh2p76X7sxLycXCq48VoyPS06uXQQA_TRpd4In2GCqdKOyCrRN5ql08siUxqXoppHTNxWXlhfCOFT87QdcppldUmFy-abPgJuPus_8x3aatyiv5FlC8mdT0AY/s1600/rofl.gif'/><div class="emos">=))</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhJj2AVq_6pYaKDuKTxqZi9oadqSnMKEkqOc3bZy2WEb5ZaJ5zsuJGIJkvvqLVBMAg4Q6elqrgw6vep0znox4SlI4HlhTMIlM1tX1O9NxwcxLt8K4X2zzg_IgQ94XEeyZDXufPcKYDepVA/s1600/suicide.gif'/><div class="emos">=D&gt;</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhIpli6C98WOg6V_fuphtHU72sjwvmjNane9t8rtDKo2ZEaPrSeQtfhjlu8hxtH8FYYRc6mGJhJwQY_nnctvUFN30_Prda5cm5KpDsRF41BbUaTvxc2lN4j1gfjJ-EWZJIGNI3dKvBSX7s/s1600/biggrin.gif'/><div class="emos">:D</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhP3nBidTnFmcIttEQ5-Mmz-yvJ_BS6___a5yJ6BAQhGn0VsBqnBTPGo2q0Vb3KfxVK_YysW6Bm0Ew68ur-bMms2HcwoFccBZzqIXOONoIHmNxBd6bDCGMxIeUgvfcc2xZP4Vn9LxwPliI/s1600/tongue.gif'/><div class="emos">:P</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhU2tRnWePAFOs-buZMp3MUaS7-spYAv1KSEBKQQNS5Hmj94b29UqJAKo0Lpsrm2sxz8vYdtbtiSHUZAM7AU7GpKECsatcpVR-cJJNEHI7QBTDNPwhm_yd5tMTZTJLf6cXl1E-CCVY75q8/s1600/shock.gif'/><div class="emos">:-O</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi5tcB44gyXz69Ly9jzAD6K7JE9LZBhaqO_pPHEilBNTW68bmlqP21DHIbJaax4gbQULsGfihh8-Z4OXg1jG_zhSIMdP2kVHzDZpkTppAgbUDPP3KcY88RdBA1TrAStCPy-dwoutKr2SME/s1600/think.gif'/><div class="emos">:-?</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgwNlBw5BG-UPPIrUhP5fzmbzr-inss4AvVCBcXGE8SZHzuQGQBrpCfvPC3iNRAgtMsW0G38ToSDxdNcT3K8sfKAsVb_veamlNjs-GwTpnuMeGRsHPtfkOB00baV25b3oH3dgmcHWk9Qxk/s1600/unsure.gif'/><div class="emos">:-SS</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgDWRi1uSXArFEXfOk_hK1ai5gly0YevnxmlTxr1GCxtycyIZOgaGJSTdwvAkUr7zXts3Kk1L1Pha44060Ul4I9-HrMc8WcyHE-r37LtNooNkiJkYCULuaUgQYXaFYVGt92upKIpS0N4cE/s1600/flowers1.gif'/><div class="emos">:-f</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLjpH7f77Mjr_TNtzL168nQmX6ax1TtvuyWFbRLmVGEEj8Np9oRjPmzBRP484RfpyJj2kjfyIJiHjA5RGCENlcro40VUFKLIuVwR4ri2pledsZ_OlJjbtm2HEJq7iX1WqV7tpcUGKxHX4/s1600/doh.gif'/><div class="emos">d(</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhkCU29KAKZzo5opmNVVIw3-2KZ-izryqIA0ZdoAgt_d3G6CfLrKeO3lZsLuGw2dxNee3pk7wetZ1eXBBUNLiQdwOjoBSIjDZrM_A4MMcMqNwsx-ThZv30dRirFfRnPK38IYPEUB-HlB8Y/s1600/air_kiss.gif'/><div class="emos">:-*</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgYIbJn11J5XijTnWpfhJE8GWitZh-v2HbiNaB5WIJY8UdvhpBLRlvcus7HQq-837jQZdMTtM6D3HRb2DXRrgwc86fZtpbAiDDLICpa9JjDT9CEBCj0Ed8ZkC2Ql6iBrLvIY_6Inhm8rwg/s1600/threaten.gif'/><div class="emos">b-(</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjECpO1hypm35Iog2V5RJ_fpvo0FsENRyy4xxGQIIL1J1p1AEkgulCYfLZEvXdEyblpD2Cr98n-X-btETUWeRbGXYYKLsCKhkZvIlJ5xHlkanduVG3ienMB6wKCsgtNDbrU19AJjAcGpjo/s1600/help.gif'/><div class="emos">h-(</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiuq1yxtBTv4ISvDwuV0ygAu-LGc_xY_DOKtm31ixQKZi6TpWPi92ZiZjWIPDfK4tUDD2IZ952MZk4Fbw7HkS5H_xHnB1D_vGWLVerb8Q1KOVpd6PTjh46mX4WiBn5IymP2DOTjJ3I25uM/s1600/good.gif'/><div class="emos">g-)</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEibJfjaTTcvFlM-KAkfb77ZtQNV4qldBvmaf5hKwqs9a1LAhFN4SvmvHtfrVutM-xVGQiy_8dpMgmRT9CPAqmg-q_8j8UfqGHcUwBQr1NwW5w-Wde_m05G9ajNuYW_EeEt9N_WKJzVexfk/s1600/beee.gif'/><div class="emos">5-p</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDd6THQo5pZhdOhbEpb_Uk9WnP7sPup38if-Y0M-14RkoyB3yhZCFZg3NAZhYLiN8-FUWO_BGHCQ0wKMljEEkzYlex9imu8L1QjQ1bnU5S0ZuHoo6AcvfbTalD3nFx_k2gJ8mqJYXpTKs/s1600/yahoo.gif'/><div class="emos">y-)</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhgD_BxVTRFpPUBjGBlBcXg9nPR2Vw2hJl6olkjYvQ4DdPKufoyGEFX50okSY_69LUFR0VhHH4h8ohyphenhyphenOE9EdK0B-CQupSJKk2phvfL_vuuUNp1sheWM73K7MsCM5fk7_kuuIQnFGHfgHYY/s1600/crazy.gif'/><div class="emos">c-)</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgX7vGmmxkgOq175Dwynyrn9jPSwXQ7gewyYQ78PJZi-BJUmjqVeq3gRa8NvgdLYG1LJcsg1UGIRz3fKElWF3_KW5ZiAjwYuN_iq3EEwVgsbvsiZzeTGxnnn-XlIru-S8piFHkbZQnwV-E/s1600/spiteful.gif'/><div class="emos">s-)</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhG5fPft98C_mQAZYy14Wm9lVne-ZZhXWQuqQzq_7W4tCrUY4ITLhmFmr5gfcBxREsEECGfCHsywTBlzPoZrPEFI-j_XsvcIp5adMJxwA3DHF7qjc2fEGWoLLD9i6W5INzmfb5PH-_gu1A/s1600/drinks.gif'/><div class="emos">d-)</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiYAaOu8NMO9dA3LsZcZDJ5Spv15y_Gj6R4SPchaCI0r9-yNq50oUaw_4LqpGopnSXeQ4s23TlUf53oLfBsTqPcBpy6IDph_ZsQPxf8PoMDH2bWbrK8Smox2LvUUwhQs0kjsWNxMSsErg0/s1600/cheer.gif'/><div class="emos">w-)</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgkdh6UVLEVFkw7UlTDaQrD0D92HHUJIkxsGlg4imPMmWAMoGcyn8jFUATn8iLiSXeZzjEK4ncmtsOCas-QUteo9Lry1mbscelW0cogsPbMGmBL1jtmGvhYneHAa7SzQdbucchnM73swK8/s1600/hi+2.gif'/><div class="emos">:-h</div></div>
<div class="itemo"><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVpi_3fdo6rwSF7mShVlDpsL8APMkW2nVCVYbHbDVmgQrU6OoGxcbJsM-JJ8kq5KLvrlomrqn0onW9kyebgO3lpkRsLqMXqT5JtMtdxMv0LJSsRim5wCxdgca1uVFMQ3dYg5j2IYs_tmk/s1600/give_heart.gif'/><div class="emos">:X</div></div>
</span>
<span id='smiley-toggle'><a href='javascript:moreSmilies()'>Show Emoticons <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiXEW9AptW6EGJtoE_jhyphenhyphenq2w_U-28RaAgxEAGK2zA_Kv-Y7Rft-IleQi6WIPulsrGru_hkiVlzhkb4i5aQJHqpel7qdurxttJoBY56vIk_5e63RNxPPRwHQtiqzyvh3lMNuFiwy4RSnzqY/s1600/smile3.gif'/></a></span>
</div></b:if>

Step 12: We are almost done, find
]]></b:skin>
Add the css code below above the ]]></b:skin> tag

.itemo{float:left;font-size:11px;height:30px;line-height:1.2;padding:10px 0;text-align:center;width:85px;}
span#smiley-toggle{clear:both;padding:15px 10px;float:left;font:bold 14px 'Oswald', sans-serif;}
span#smiley-toggle a{text-decoration:none;}
#smiley-toggle img{vertical-align:bottom;}
img.smiley{vertical-align:bottom;}
Step 13: Save your template, you are done adding an awesome emoticons in blogger comment system.
Flex am!

Read More

Wednesday, 5 October 2016

Add Widgets To Mobile View In Blogger

How To Make Widgets Show In Blogger Mobile View

Your blog mobile view may look boring, wise to spice it up a little more by making some of those awesome widget in your desktop view also visible in mobile.
Make widget appear in mobile view

There is a way you can make any Widget of your choice show in mobile view, especially  Google Adsense, is one of the many reasons blogger seek for this method. This way you get increase revenue and show your ads in mobile view without going through some boring and risky code adding and long editing.

Follow the Process below to show any widget to mobile.

Steps To Show Widget in blogger mobile view


Before you begin this steps, make sure your mobile template is set to custom.

To make any widget show in mobile, you get to add a mobile='yes' code to a widget code in your template, it not as hard as it sounds.

Enter your blog template and hit the Jump to Widget button, this will display all the widgets in your blog vertically, select the gadget you want to add to mobile, it will take you to it position. Use the example below for proper understanding.

Using  'Adsense' Html code below as an example

From   <b:widget id='HTML2' locked='false' title='' type='Adsense' visible='true'>

To       <b:widget id='HTML2' locked='false' mobile='yes' title='' type='Adsense' visible='true'>

As indicated above, we added mobile='yes'  in the the widget code. this will make that widget appear in mobile view.
If you wish to make it show only in mobile and not visible in desktop view, simply change the 'yes' to 'only', that's mobile='only'

Read More

Tuesday, 4 October 2016

How To Fix Comment Box Not Showing in Mobile | Blogger

Fix Missing Comment Box In Mobile For Blogger

Sometimes, the comment box goes hidden in the mobile view for no reason, lots of blogger platform users have that problem, it doesn't mean it's unsolvable.

There are three I know that causes to the problem which
  • You have the custom mobile view checked
  • You are using a third-party template
  • You edit your templates a lot and get things messed up

Well not to worry, I will help you fix this issue in a while, all you have to do is to follow the simple instructions below.

To fix this comment box issue, you are required to go into your blog template, if you have never gone in there, cause it's a blog brain box, you are required to save a copy of your template somewhere, so you can easily restore in case it get messed up

Steps to fix missing comment box

Step 1: Sign in blogger.com > Select blog

Step 2: Open Template > Edit Template (make sure its backed up)

Step 3: Click anywhere inside the template and hit Ctrl+F keys(window), Cmd+F(Mac)
Copy this ]]></b:skin> and paste in the search box on the top right corner and hit enter key to take you right to the code's position(with yellow shade)

Step 4 Paste the CSS code below just above the ]]></b:skin>
code

.mobile .blogger-iframe-colorize {
display: block !important;
}
.blogger-iframe-colorize {
display: block !important;
}

Step 5: Then save your template.

Visit your blog with a mobile device, you will find your comment box already waiting up for you.
And that's how to fix comment box not showing in mobile for blogger. 

Friendly Tip

Try and avoid more of this issues by always saving up a copy of your template before going into your blogger brain box(Template), I call it the brain-box so the word can scare me and make me save a copy before I venture into it.

Steps to save a blogger template
Before you hit the Edit Html button, at the top right corner of that page, you will see backup/restore button, click on it, will show a download template button, you know what to do.
Read More

Sunday, 2 October 2016

How To Restore Blogger Template (Easy Steps)

How To Reset Blogger Template

It's very annoying when your blog template de-arranged in way only getting back to default will make things right. there are several ways to get your templates back to default, that's what this post is all about.
How to get your blogger template back to default

Steps To Reset Blogger Template

Follow the steps how to reset blogger template

Step 1: Enter the blog you want to reset and open template >Edit html.

Step 2: When template is opened, Click the "Jump to widget" button in between "Save template" and "Edit template".

Step 3: Locate 'Blog1' in the drop down and click on it, to take you to its location, it should looking something like the code blow
  <b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog' version='1' visible='true'>

Step 4: Change the 'Blog1' to 'Blog2', will look like this
 <b:widget id='Blog2' locked='true' title='Blog Posts' type='Blog' version='1' visible='true'> 
and save.
STep 5: Go to blog layout and remove all gadgets that were manually added, or remove everything.

Step 6: Go back to Templates, this time you hit the "Customize button".

Step 7: In the blogger template designer, under the template categories, you will see a "You've customized this template. Remove customization" text, click on remove customization

Step 8: You have successfully Restore your blogger template to default.

Read More

Wednesday, 21 September 2016

How To Show Post Title Before Blog Title In Blogger | Seo Tip

How To Fix Blog Title Showing Before Post Title In Blogger

Talking about SEO, this is one of the most important step to getting ranked by Google, showing your blog title before your post title won't aid that instead it reduces your website rank.

If your blog remain in this state(blog title appearing before post title in search engines), you may find your daily visits depreciating, that is a real heart breaker for bloggers especially the newbies.

Changing How blog title show before post title (FIx)
Now you might be wondering how a blog title coming before post titles can effect a blog appearance in search engines, let me explain.
You see, in Google search, only 65 characters are allowed to display in search result titles, Imagine if your blog name has up to 45  characters and comes before your post title, it means Google will not show your post at all in search engines or  will also reduce the show up, hope you are getting what am trying to explain here, so you see why it's important we make this change to our blogs.
 This is a default setting for Blogger platform, I still don't know why Google made it so.

Without much talk, lets get to the steps in make this modification to our blogs. Just in case you still don’t get the reasons this change should be made, read the explaination below. I used the two basic errors or should i say two basic negativities to be encountered if this change is not made, if you get it, skip to the steps


Effect of your blog title showing before 

1. Your Blog will lose visitors: It has explained its self, your blog visits will reduce daily and that could cause a great percentage loss in revenue at the end of the month, no Blog Owner would want that. Making this change will put that situation away.

2. Your Content won't show up in search engines:It can be heart breaking after writing an awesome Content, with very high percent of demand in your niche and ending up not showing in search engines, making the change could avoid that.
Like I stated above the reason your blog might not show up in search is if your blog name is very long, like 30 to 65 characters, when Google only show 65 characters.

Lets get to the simple method to fix this default issue.

Steps to make post title show before blog title.

Before I start listing out steps on my tutorials, I first go for safety measures to avoid unnecessary errors in the process of any modification, This is the safety measure.

This modification requires you to go into your blog brain box, which is your template, it is advisable to always save a copy of your template before going into any modification, just in case of any mess made in your template you can easily restore back to its previous state.

Steps

This process is completely save and easy to apply.
Step 1:Login to blogger.com and select the blog your wish to make this change.

Step 2: In the left menus, locate and hit template> Edit Html

Step 3: While your template is Open (remember to save a copy of your template), you need to search for this code <data:blog.pageTitle/>, to do that, click anywhere in the template and hit Ctrl+F keys for windows or Cmd+F keys for Mac.
This will show a search box in the template. Insert the code <title><data:blog.pageTitle/></title> in the box and hit enter key, It will take you directly to the position of the code.

Step 4: Now replace that code with the one below

<b:if cond='data:blog.pageType == "item"'>

<title><data:blog.pageName/> | <data:blog.title/></title>

 <b:else/>

<title><data:blog.pageTitle/></title>

</b:if>

Step 5: When done with the replacement hit the Save Template button to save your changes.

That is pretty much everything, now your blog should be showing properly in search engines in a while, post title appearing before blog title.
If you encounter any difficulties during this modification, please state in the comment below so we know how to help you.

Note: if your template was messed up during this process, go to Backup/restore to restore with your previously saved template, before trying this steps again.

Read More

Monday, 12 September 2016

How to add and verify a blogger blog to Bing Webmaster (With Pictures)

How to add Blogger Blog to Bing Webmaster

Add Your Site To Bing Webmaster

Apart from Google, bing is another traffic generating machine, increase your visits, revenue and other things relevant to your site by adding you blog to Bing Webmaster.

Bing has come a long way this days, we know Google is the most popular, but the use of the bing search engine has multiplied.
Adding and verifying your blog to Bing Webmaster is much easier than with Google Webmaster. Lets get to the steps to do this.

Steps To Verify Blogger In Bing Webmaster

Here are the steps to add and verify your blogger blog to Bing webmaster.
1. Open the blog you want to add.
2. Open Bing Webmaster or click here to redirect you.
3. In the Bing Webmaster homepage, you will be asked to sign your account, if you don't have an account then click on sign up below the Sign In Button to create an account.
Sign into your account
4. Add your site in the box below 'My Sites' menu see photo below.
input your site url
5. Next you add your sitemap, enter http://yoursite.com/sitemap.php then click add you will get a personal meta tag and copy the meta tag, save to note pad.
6. Go back to Blogger and enter 'Template'
7. Locate Backup/Restore button the top right corner to save template just in case it gets messed up in the process.
Backup your template
8.Hit Edit HTML


9. In your html template, look for  <head> Tag usually at the number 4, if you Find
Edit your template, look for the <head> tag
If you Find difficulty in locating it, Hit ctrl+F/cmd+F in your keyboard to pop out a search box, input <head> in the box and hit enter, it will take you to the tag position with yellow shadow all over it.
10. Go back to your notepad and copy the your personal meta tag
11. Paste the tag right below the <head> tag. then save template. 
12. Go back to webmaster and click the verify button below
after meta tag has been added, its now time to verify your blog in bing webmaster
.
13. Thats it, it has been added and verified.



Read More

Saturday, 10 September 2016

How To Add and verify a blogger blog to Google Webmaster (With Pictures)

How To Add A Blogspot/Blogger Blog To Google Webmaster With Pictures

Lets learn the easy steps to add and also verify our blogs in Google Webmaster

Step
1. Go to Google Webmaster site or click here to redirect you.
Logon to google webmaster site
2. Sign into your Google account (better if the same account with your blog)
3.Click on Add Properties and enter your site url.
Sign in to your account click add properties and add url

You might be asked to verify the ownership of the added url. you get to choose between the recommended method and the Alternate Method
Choose your method of verification
We are going to work with the alternate method so click on it.The four different styles you could use in the verification are listed.
Lets make use of the first one, "HTML tag"
4. click on it, you will get script in this form <meta name="google-site-verification" content="xxxxxxxxxxxx_9xTEVxxxxxxxxxx"/> copy that and save to a note pad, It will be added to your site Template Later.
Copy your personal meta tag

5. Go back to blogger.com and select blog.
6. From the left menus, locate and hit template.
7. At the top right corner you should see a Backup/Restore button.
Back up your template
8. Click on Download full template button. save the file with the name you can remember easily just in case you get you site template messed up.
Look for head tags in the template
9. Hit the Edit HTML, this will show the blog template.
add and verify blogger to webmaster
10. Search for <head> tag, which is usually at the 4th column of your template, if you don't find it, hit contrl+F keys or Cmd+F (in the case of Mac) keys in your keyword to pop out a search box, copy this tag <head> and paste in the box, it should take you directly to the its location with with yellow color all over it.

11. Go back to your note pad and get the previously saved file, copy and paste it right below the<head> tag, just as the photo below indicates.
add meta tag below the <head> Tag
12. Click save template.
!3. Go back to your search console(webmaster) and click the verify button.
Go back to search console and click verify
You will get a success page
Your account have been verified

Your blog has been added and verified to Google Webmaster.

Read More

Friday, 9 September 2016

20 Ways To Get More Website Traffic: Legit ways


How To Get Traffic To Your Blog

How-To-Get-Traffic-To-Your-Blog
Photo Credit: Getty Images

As we probably know, good number of visitors is good amount of money, there are good numbers of posts out there talking about different ways to get visitors to your website, some worked, some didn't while some messed up your SEO, but not to worry, am here to approve some of those method you might have read out there, that is to say they are fully save.

So i did a lot of research on the issue of getting visitor to you website and came up with this 20 lists.

1. Hubpage
This is an awesome way to earn money at the same time  drive traffic to your website, Hubpage is a place you write great content and Receive payments, in other to drive traffic from Hubpage to your website, you have to write contents related to your website post(s) so you can leave a link or two to redirect readers to your blog, remember not to add many links so your content can be published so your write up can be publish.
Read: How to earn money from hubpage in 8 steps

2.YouTube
This is another great way to drive traffic to your website which am sure you are familiar with,
Now to driving traffic to your website, you have to make a video related to your post.
During your upload, below the video you should see a description box. its where you will have to leave your site link(s) for viewers to click on.
How to make money with YouTube

3.Yahoo Answer

Yahoo answer is a question and answer portal, do a search and look for relevant questions that can get or has gotten many attention, relates to your  posts that you can answer,
Answer the questions also leaving a link to redirect them to your website, to earn from it
Note: Its how convincing your answer is that determines the number of attention it will get, so try and be very convincing.
 How to make money with Yahoo Answer

4.Quora

By answering questions related to your website posts, it almost like yahoo answer, it has millions of people coming in everyday asking questions on different kinds of topic. To gain traffic with Quora, follow the exact process with "Yahoo Answer"

5. Reddit

Social media's can drive insane traffic to your website depending on how its being utilized, Reddit is a perfect place you can get lots of visitors to your site. Its all about popularity, karmas and upvotes, the more of those you have, the more your post are to be seen by Reddit users, write a shot note about your post, leaving a link and share, remember to use the right subreddits to prevent downvotes or being share to the wrong people.

6. Twitter

This is one of the most popular ways to drive traffic to your blog, open an account with the name of your blog,  if you domain name is http://ghtven.com let your twitter username be @ghtven so they can easily find you and gain follower. Share your blog post with the links on your tweets so your followers can click on it and get redirected to your blog.

7. Facebook

Facebook is one of the easiliest ways to get traffic to a website, popular social network.
Apart from meeting new friends and families, it can also be used to drive insane traffic to your websites, To do that, you need to open a Facebook account, find friends(thousands), join lots and lots of groups, like pages and create fan pages related to your website.
After you have join enough groups(join groups that are related to your website contents) have enough friends,  have enough likes on your fan page, then your good to go, this is what you do to get traffics, share your website post on your timeline, share in groups, connect your website to Facebook and post your links on page comments, with this, you should incread the number of visitor coming to your website.  click here to know how to add thousand of friends on Facebook in one day Read also: How To Drive Insane Traffic To Your Blog using Facebook

8. LinkedIn

This is also like Facebook follow the same process as the Facebook part and you can also drive traffic to your website but for me in LinkedIn, i mainly make use of groups there, it one of the best ways to redirect people to your website .

9. Pinterest

This is a social media network where people go to this days to read articles of their interest, so then Pinterest can be used as a traffic source, write great contents and share on PinterRest. 
There are several ways to draw traffic to your blog using this method, to have more knowledge on this read:
5 ways to flood your blog with traffic using pinterest

10. Google

No matter how much traffic you drive to your websites, its incomplete without Google, optimizing your website with Google get you free readers, is  the best method you can use to gain visitors/traffic to your website, for you to understand how to use Google as a source of traffic,  read lots of SEO books, to get SEO friendly.

11. Google+ 

This is another social media that looks more like Facebook and LinkedIn. you can use this also to drive traffic to your website , create your website pages, groups and mores, join related groups and share your website posts,
How to increase traffic to your blog using Google+

12. Warrior forum

This a forum Where Internet businesses gentlemen and ladies meet,  blogging and affiliates programs are really discussed there, so this can be a very good source of traffic to your website especially, participate in forums related to your website and share links, 

13. StumbleUpon

Another place to get traffic to your website is using StumbleUpon, create an account and share your website post, it works.

14. Email list

Building an email list is also a nice way to get visitors, Its a way of getting or notifying previous visitors to come back and read more of your new posts, this can be a very good source of traffic if well utilized, to gain more knowledge on how it really works, read:25 easy ways to grow your email list

15. Work on your content headline

This is also good way to get people to your read your website , an enticing headline works like a butterfly and a flowers, it attract reader, so it work as a traffic source.

16. join blogging communities.

This is where new blogger make mistakes, when running a blog, joining communities like problogger and Copybloggers is a great way to network with other blogger and cross promote each others contents.

17. Add text to your blog post image

When writing a post or after writing, it  advisable to add text to your image(s), text like post title or blog url, for easy re-connection if your post is share or pinned.

18. Add your blog to Alltop

Submitting your blog to alltop can increase the chances of your post being found by people looking for your content.

19. Focus on long tail keyword

The days of focusing on one keyword on your post pages are gone always use terms and phrases that are relevant to your post topic.

20. Make use of categories

If your website doesn't make use of categories, it time to get it activated, it does not only support in SEO improvement but also makes it easy for your reader to find content if their choice.

Read More

Thursday, 8 September 2016

How To Activate AdSense Page-Level Ads In Blogger (Show Mobile Ads)


Installing AdSense Page-level ad.

Google admob Ads have made it possible for blog owners to display google adsense ads on their mobile template in with the availability of Page-level ads, which was recently lunched for Blogspot Blogger and Webmasters.

Display Format Of Page-Level Ad

There are basically two formats available which are the Anchors and the Vignettes.

Anchors
This are ads displayed at the button of the screen, it can be easily removed if unwanted by your reader.
Vignettes
This ads displays full screen, this one seem to be very effective/advisable for mobile advertising.

Reasons you should use Adsense Page-leve ads

There are many positive reasons why you should be using this for your mobile platform right now, with AdSense Page-level ads you can increase the income earned from Google AdSense, you have two new ad format to play with, This does not effect  the three(3) Ad limit and provide smooth user experience.

How to install AdSense Page-level ad.


Have you made up your mind to use it on your mobile template? good, lets get to the steps.Your can get this done easily by using your adsense account
  • Login to your adsense account
  • Click this Link to redirect you to the AdSense Page-level ad page.



Two page level ads formats
The photo above shows the the two ad styles we discussed above, now push them 'on' as indicated.
If you decided not to use any of the ad styles, leave it 'off' then continue.
  • Scroll down then click on the 'get code' button.

place the code under the <head> tag
  • Copy the displayed code.

Page level ads for mobile
  • Go to your Blogger and locate template
  • click on the 'Edit HTML' and do a search on </head> tag

How to do a search on Blogger template is easy, while template is displayed press the Ctrl+F or Cmd+F button to pop out a search box, insert the TAG in the box.
  • Place the Page-level ad code just above the </head> tag and save

Note:There may be an error displayed while trying to save the template, to fix that, replace the attribute async with async="async", now you should be able to save the template.

If completed, run a test by visiting your mobile site using your mobile phone
PS: You will have to log on to your site as visitor to be able to check the ad out.



Comment if any difficulty.
Read More