Monday, May 30, 2016

How To Use Dynamic Description To Boost Traffic From Search Engines

seo optimization tutorials 101helper blogger

Post description and blog description are very important, not because it tells visitors about your blog or post content because nobody reads it, I am talking about me, I don't read description of a site... Don't know about you :P . To me blog or post description both are just a way to show posts and blog on search engines. Because I use keywords in description so that search engines show my blog when someone types a relevant keyword which is present in my description.

But what if you are using best keywords and still you get only fewer views or no views from search engines? if its happening with you then it means that the description that you are using is not having keywords which visitors are searching, so you need to find these keywords and replace them with existing ones.

One best way that you can use to find best keywods for your content is to use Google Trends. You can guess keywords too, which you think vistors can use to search but accurate keywords are those which you will find in Google Trends.

Another way to find best keywords is to find similar sites to your site which have good traffic and grab the keywords that they are using and put them in your site. It will not cause a © copyright issue.

So Dynamic Description is description that is variable and changes according yo demand. For example I have post about blogger templates and I created it in 2016 and in description I wrote "best blogger templates 2016" and now its 2017 and the visitors are searching for "best blogger templates 2017" now I may get my blog indexed in 3rd or 4th page of search engine results but there are more changes that other sites having 2017 In there description will get indexed on first page. So I need to update my description to get my blog indexed on the first page.

You have to change your blog or post description frequently to get + positive results. So dynamic description is a way to increase yraffic from search engines. And if you get traffic from search engines, it means you are a successful blogger!

One last thing that I am going to tell you in this post is that if you change description again and again, you will need to wait for atleast 1 week to let search engines crawl your site and update the description. Which will definitely take alot of time  because you will not get the best results from first changes but you might need to change description several times until you get some + positive results. So I brought a simple solution for this, now you don't have to wait for a week but you can set a time after which search engine robots will recrawl your site.

So you can change, watch results and see if its improving your traffic or not.

The solution for fast crawling is a meta tag mentioned below. You need to put it in your blog's template below <head> and set the time after which robots will crawl your site again.

<meta name="revisit-after" content="1 days"/>


Remember that too much crawling of a site is not good so you need to change your description between given time and look for + positive results. After getting more traffic remove the meta tag.

I hope you found this post meaningful. If you have any doubt, questions, suggestion and want to send us feedback, please leave a comment below.

Read others posts and don't forget to share atleast one post.

Thanks for visiting 101Helper, do visit again!

Search Tags: How to get more traffic from search engines, how to use description to boost traffic in blogger, how to update blogger blog faster in search engines, increase organic traffic to blog, Seo optimization tutorials blogger

Saturday, May 14, 2016

How To Set Custom Post Title And Logo In Feedburner Emails


Feedburner is used by every blogger to send mails to their subscribers and hence its optimization is very important to let subscribers get maximum of it. Though I haven't shared much about feedburner except how to set it up. So I decided to share a new thing in feedburner that will benefit you.

Its setting up custom title for posts because without optimization all the mails sent from a blog have the same blog title having url of the post so subscribers mostly don't open the post even after receiving the mail because they haven't known the name of the post so they don't get interest in that mail. So it is not beneficial in anyway because you send mails to your subscribers but you don't get any response. Also I will show you how to put your logo in emails, it will tell visitors that this email is from your blog because logo is the identity of a site or blog.

So in this post I am going to show you how to enable custom post title in feedburner and how to put your blog's logo in emails. Follow simple steps mentioned below!

How To Set Custom Post Title In Feedburner Emails?

Step 1: Go to feedburner and open your blog's RSS feed.

how to add title in feedburner emails

Learn: How To Set Up An Rss Feed For Your Blogger Blog

Step 2: Navigate to Publicize > Email Subscriptions Email Branding.

Step 3: Paste ${latestItemTitle} in the Email subject/title input area.


Step 4: Scroll down the page and click on Save button.

How To Set Blog Logo In Feedburner Emails?

To put your blog's logo in your emails you need to upload it and get its link because you have to provide a link to your logo in feedburner. So upload your logo and get its link. I suggest to upload it in a page of your blog then after uploading switch to Html editor and get the link of logo. After uploading and getting link you can delete the page you don't need to keep it because your logo is stored in blogger.

After getting link of your logo follow below steps:

Step 1: Go to Feedburner > Your Feed Publicize > Email Subscriptions Email Branding.

Step 2: Paste your logo link in the input area of Logo URL.

how to add logo in feedburner emails - 101helper

Step 3: Scroll down the page and click on save to finish.

I hope this post was helpful to you, You can customize look of your emails on the same page(Email Branding). You can change the title's font and its size as well as color of both body text and title.

If you have any suggestion or question, ask me in comments.

Search Tags: how to add logo in feedburner emails, how to add custom post title in feedburner emails,separate post titles for feedburner emails,how to use feedburner for blogger,how to setup feedburner for blogger, 101helper blogging tutorials.

Thursday, May 5, 2016

How To Add Vertical Featured Post Slider In Blogspot

vertical featured posts widget for blogger

Featured posts sliders are no doubt used very much by people and some people who know javascipt and css are creating better and better featured post sliders. The reason for using featured post slider is to increase page views and also add a professional look to site but the basic purpose is to increase page views by choosing older posts or best posts and show them to visitors because older posts are mostly hidden from visitors as they are not you can say not in front so featured posts slider brings it in front and makes it alive. Featured posts slider is important thats why Blogger has also recently added it in gadgets in layout.

In this post I have brought you something that you cant't find in other sites, I hope you will like it. Its a vertical slider, though you need to add links, image links and name of the post but its really cool. The main purpose of this post is to share code of this amazing slider with you not the steps of installing it because steps are very easy if you are familiar with Blogging.

WATCH A LIVE DEMO

Similar Posts That You Might Like:





How To Add Vertical Featured Post Slider In Blogspot?

Follow below steps to add vertical related posts widget in your blog.

Step 1: Go to blogger dashboard and navigate to Layout.

Step 2: Click on Add a gadget in sidebar.

Step 3: Choose Html/Javascript.

Step 4: Copy below code and paste it in Html/Javascript window.

<script type="text/javascript">
    $(document).ready( function($) {
        $('#news').vertigo();  
    });
</script>
<script>
(function($) {
$.fn.vertigo = function(options) {

$(this).addClass("vertigo");
var list = $('.vertigo li');
var totallist = list.length;

$(this).after('<a href="javascript:" class="btn-pre"><p><</p></a> <a href="javascript:" class="btn-next"><p>></p></a>');
$('.vertigo li').each(function(i) {
$(this).addClass("item"+(i+1));
});

var total = 1;

// Settings
var settings = $.extend({
play  : true,
timer : 15000
}, options);

if ( settings.play ) {
var playx = settings.play;
}
if ( settings.timer ) {
var timerx = settings.timer;
}

if(playx == true){
setInterval(function() {

if ( total <= (totallist - 1)) {
var nlisth = $('.item'+total).outerHeight();
$('.vertigo li').animate({'top':'-='+nlisth+'px'});
total++;
//console.log(total);
}
}, timerx);
}

$('.btn-pre').click(function(){
var plisth = $('.item'+(total-1)).outerHeight();
if ( total !== 1 && total <= totallist) {
total--;
$('.vertigo li').animate({'top':'+='+plisth+'px'});
}
});

$('.btn-next').click(function(){
var nlisth = $('.item'+total).outerHeight();
if ( total <= (totallist - 1)) {
total++;
$('.vertigo li').animate({'top':'-='+nlisth+'px'});
}
});

}

return false;

}(jQuery));
</script>
<script src="https://rawgit.com/101Helper/mobile/master/installize.js"></script>
<div id="container">
<ul id="news">
<li><a href="/2015/03/slide-in-menu-for-blogger.html"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiR7rn3S3x5aHvPR3kQMc6Y4ym679CdcgwHyJc9i5TQUDzo-UvuftTydEdOubqueGflz78keCOP4nnhUcs1RF-Zq-CwqH4u6yAF-4NDRw8b8U8XzAmPpqpQiRATAAuZrfTuN9Kzstxk8oc/s1600/Slide+in+menu+for+blogger.png"/>Slide In Menu For Blogger</a></li>
<li><a href="/2015/04/how-to-submit-blogger-sitemap-to-yandex.html" target="_blank"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjpbRGgHW5yoQ-KouBY6qUz0_4dORQloDqv-bfEbKzPf0fr5HObqPE5AuizXZGG_MnpLuB8o6EFkyU6idbs3uWMUGFpmybAX3gWlDxcd19R720ClHuldVpWmamebvrA_zKtB7yQQBAsQtw/s1600/yandex-logo.png"/>How To Submit Blogger Sitemap To Yandex</a></li>
<li><a href="http://101helper.blogspot.com/2015/03/how-to-get-your-blog-to-top-of-search.html" target="_blank"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg9oBCYKElE67fTrYS2HyR-jcMqjH-5ofuH8vf3PzrmZY0LfAIrRqDSORRnHPEpvuhKbbjsu_GBApJfIMnlRMT-_EG1L0gWBA4AuRP5v8P1Ezr6j3y52naI8g3eMPWDOOQjeng_TmvuQGU/s1600/how+to+get+your+blog+on+top+of+the+search+results.jpg"/>Get your blog to top of search results</a></li>
<li><a href="/2014/08/how-to-add-vertical-related-posts.html" target="_blank"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgiw-w7xamBMKr7pzXE6HzIeZk3w9_uDk0WlNp0BBFV8mQCXgYcUqKGpwy6ncJ9E3baUmetVB_zzhBEZluGpdDiqEjm6CGA6X7A23k8-cY4BAohGksz9td4m40-_Jy8CfUb9k3WxlPH39Y/s1600/V_inline-content.gif"/>Vertical Related Posts Widget For Blogger Desktop And Mobile Site</a></li>
<li><a href="/2014/10/numbered-navigation-widget-for-blogger.html" target="_blank"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiOkzQLU_CXJxfry-T8w_OlaYUaO-Oc_cPGawR-0gJZfzD70jg0iDHtgo6BfQOoDWEG0J72KShSEjzzY3zLqmboZyq-bdMygO-pDdBx0XDg29I7UD5lOMqX738y3MKFSPdiBPMq8XmwtHo/s1600/numbered+navigation+for+blogger.jpg"/>
Numbered Navigation Widget For Blogger</a></li>
<li><a href="/2015/06/how-to-customize-blogger-static-pages-CSS.html" target="_blank"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhVZ-69NyovVgXlHLa5bPM6Q1mP7pBHud9T73mftjVmj4L9QBj49NeXrWuFU0XE9Grq7d98hBxBKCCgTMLOvUxv_O0XDlAS9yDz0lDVQjHrAe2e5nln2QGniTv1F6-6t8ZLD1FSnXAK-sQ/s400/how+to+customize+blogger+static+pages+with+css.png"/>How To Customize Blogger Static Pages With CSS</a></li>
<li><a href="/2014/08/how-to-design-contact-form-for-blogger.html" target="_blank"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjKmY-M08IIGG04z3Es3zuu9x9Q7EqVYsBWbAyMokSmNIJbpxZlcfdMwienNaPJzugOAbdWlNvaLtU0U0hKLhnmggfl3PTMNGb4aryzhkVuNO_gkC3ASXctmI7LR_HZNgEZun0g3t22QrU/s1600/blogger-contact-form%5B2%5D.png"/>
How To Design Contact Form For Blogger Contact Page</a></li>
</ul>
</div>
<style>
#container {
    height: 350px;
    overflow: hidden;
    width: 270px;
    margin: 0;
}
#news {
    margin: 0 auto;
    bottom: 5px;
    position: relative;
}
.vertigo li {
    list-style: none;
    padding: 13px 0px;
    display: inline-block;
    width: 260px;
    position: relative;
    right: 10px;
}
.vertigo li img {
    float: left;
    margin-right: 10px;
    height: 75px;
    width: 80px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
.vertigo li p{
margin:0px;
text-align: justify;
}
.vertigo li a {
text-decoration: none;
color:#6F6F6F;
}
.btn-pre p, .btn-next p {
    color: #bbb;
    font-size: 19px;
    margin: 0;
    text-align: center;
    width: 27px;
    background: #fff;
}
a.btn-next {
    position: absolute;
    bottom: -40px;
    right: -10px;
    border: 1px solid #bbb;
    text-decoration: none;
    color: #bbb;
}
a.btn-pre {
    position: absolute;
    border: 1px solid #bbb;
    right: 30px;
    bottom: -40px;
    text-decoration: none;
}
</style>

Step 5: Click on save to finish.


How To Customize Vertical Featured Post Slider?

Replacing links, text, image links:

Replace green colored links with your post links, yellow colored links with your post image links and red colored titles with your post titles.

How to make changes in auto-play?

Autoplay is enabled and the set time is 15 seconds(15000) if you want to disable it or want to change time of auto play make changes in this part of code:

// Settings
var settings = $.extend({
play  : true,
timer : 15000
}, options);

If you want to disable autoplay replace true with false after the play text.

To set time enter your custom time in place of 15000, 15000 means 15 seconds, 20000 means 20 seconds, 10000 means 10 seconds.

How to add a new slide?

You need to add this piece of code to add new slide:

<li><a href="YOUR POST LINK HERE" target="_blank"><img src="YOUR IMAGE LINK HERE"/>YOUR TITLE HERE</a></li>

Add the code below this piece of code:

}(jQuery));
</script>
<div id="container">
<ul id="news">
<-----Paste Here----->

You hope you enjoyed this widget, please share your views about this post in comments. Thanks for visiting 101Helper.

Search Tags:

featured post widget for blogger, vertical featured post widget for blogger, auto-play responsive widget for blogger, jquery post slider for blogspot, multiple posts slider for blogger, 101helper blogger gadgets