Pages

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

Thursday, November 19, 2015

Stylish Popular Post Widget For Blogger

The Stylish Popular Post Widget For Blogger as one of the best blogger widgets all bloggers should have, shows a list of posts that have the highest page views on your blog. To be displayed on this stylish popular post widget can be the most popular posts within 7days, a month or of all time. In order to promote your blog and improve its design, it would be useful for you to use this Stylish Popular Post Widget in your blogger blog. Follow the steps listed below to add this blogger widget in your blog.

Also Read: How to Add 'Link to This Post Widget' to Blogger Post
                    Social Follow and Subscription Blogger Widget
                    Scrolling Popular Post Widget For Blogger

How To add Stylish Popular Post Widget in Blogger Blog

Step one
  • From you blogger dashboard
  • Goto 'Layout'.
  •  Click on 'Add gadget'.
  • Select 'Popular Posts'
  • Tick the options for 'Snippet' and 'Image Thumbnail' before you save the blogger widget.

Step 2 

You'll be Adding the CSS code in your blogger template. If you already have a popular post CSS code in your template, ensure you remove it before trying this out.
  • Goto your blogger template, back it up first.
  • Click on 'edit html'
  • Use ctrl+F keys to search for ]]></b:skin> 
  • Copy this code below and paste  'above'  ]]></b:skin>
.popular-posts ul{padding-left:0px;}
.popular-posts ul li {background: #FFF url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEipZ-uHvKOAL52pe_Vkvt9nycO6xS8ZKiBJG40FT5PDE1Cg9I_4xlaSJi2Dtl5lKEshWYtYDObDb5jhUiG4Vg8spO6mQVHbwmdqzndux69ISdhsRVLH_or0q32hydubjR9Tcorx_bBZfTs/s1600/1.gif)  no-repeat scroll 5px 10px;
list-style-type: none;
margin:0 0 5px 0px;
padding:5px 5px 5px 20px !important;
border: 1px solid #ddd;
border-radius:10px;
-moz-border-radius:10px;
-webkit-border-radius:10px;
}
.popular-posts ul
li:hover {
border:1px solid #6BB5FF;
}
.popular-posts ul
li a:hover {
text-decoration:none;
}
.popular-posts .item-thumbnail img {
webkit-border-radius: 100px;
-moz-border-radius: 100px;
border-radius: 100px;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
}

Also Read: Related Posts Widget For Blogger / Blogspot with jQuery
                    Facebook Invite Friends Buttton With Timer To Blogger
                    Facebook Popup Like Box With Timer For Blogger

  • Save the template. View your blog and you'll see the Stylish Popular Post Widget in your blog.


Read more »

Popular Posts Widget With Hover Effect For Blogger

One of blogger tips and tricks you should try out. You'll love the result. This popular post widget shows the Thumbnail and Post Title when the page is fully loaded. When hovered over, a bouncing snippet effect takes place.

Also Read: Scrolling Popular Post Gadget For Blogger



1. To Add this popular post gadget to your blog, goto your blogger dashboard, click on 'Layout', 'Add A Gadget'.Select the Item Snippet and Image Thumbnail options before saving.

2. Goto your blogger template, click on 'edit html', using ctrl+f search for ]]></b:skin> copy and paste this code below just 'above' ]]></b:skin>

Also Read: Square Popular Posts Blogger Gadget with Rotating Effect


/* Popular Post Customization by informationtutorial158.blogspot.com */
.PopularPosts .widget-content ul li{padding:0;position:relative}
.item-snippet {font-size: 90%;line-height: 1.2em;position: absolute;width: 230px;background-color: whiteSmoke;padding: 7px;border-top: 2px solid #FF0202;z-index: 2;left: 300px;top: 60%;height: 4.5em!important;visibility: hidden;opacity: 0;transition: all 0.6s cubic-bezier(1,2,0,0) 0s;-moz-transition: all 0.6s cubic-bezier(1,2,0,0) 0s;-webkit-transition: all 0.6s cubic-bezier(1,2,0,0) 0s;-o-transition: all 0.6s cubic-bezier(1,2,0,0) 0s;}
.PopularPosts .widget-content ul li:hover .item-snippet{left:60px;opacity:1;visibility:visible}
.PopularPosts img{width:50px;height:50px}
.PopularPosts .item-title{font-family:'Open Sans Condensed',"Arial Narrow",Arial,sans-serif;font-size:125%}
/* Popular Post Customization by informationtutorial158.blogspot.com */


Read more »

Tuesday, November 17, 2015

Automatically Open all External Links in a New Window On Blogger

Auto Open all External Links in New Windows or Tabs



Got some post on your blog which have external links to other sites? then add this to a list blogger tips and tricks you've known so far, that is, automatically Opening all external links in a new window on your blog. In the blogger post editor, all links both internal and external have the same format which is, opening in the same window when clicked on. If you have external links in your blog post, then to make them appear in a new window, you'll have to manually add target="_blank" in all the links. This can be cumbersome, atimes you might forget to include it in the links and will also take more time especially if you want to edit the links and add target="_blank" for those who aren't implementing it already.

Also Read: Get More Social Shares on Your Blog


One of the advantages of opening external links in a new window is that it increases a blog's pageviews. Without opening external links in a new window, readers can leave your blog without reading the post completely or viewing any other post on your blog because they clicked on an external link. This can increase your blog's bounce rate. With this blogging tip/trick, all internal links will be opened in the same window while external links on your blog will be opened in new windows. The script below finds external hostnames and inserts into the html a target attribute which opens the link in a new window.

Also Read: How To Show AdSense Below Post Title

How to Automatically Open all External Links in a New Window On Blogger



1. From your blogger dashboard, click on template, select edit html
2. Click inside your template, Using ctrl+f keys, search for </head>
3. Copy the jQuery code below and paste above </head> (only for those who don't have it in their template. Skip to (4) if you already have this Jquery code)

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js' type='text/javascript'></script>

Also Read: Verified List Of High PR Dofollow Commentluv Blogs


4. Copy the script below and paste directly above </head>

<script type='text/javascript'>

$(document).ready(function() {


$("a[href^='http://']").each(
function(){
if(this.href.indexOf(location.hostname) == -1) {
$(this).attr('target', '_blank');
}
}
);
$("a[href^='https://']").each(
function(){
if(this.href.indexOf(location.hostname) == -1) {
$(this).attr('target', '_blank');
}
}
);

});

</script>

5. Save your template. Click on any external link on your blog and it'll open in a new window.
Read more »

My Blogging Journey

How it All Started

Began Blogging about a year ago, September 2013 to be precise. I can remember this vividly because that's my birth month. Decided to try something new since ASUU strike had sent us on compulsory holiday. Always wanted a website, but never created one before this time. Joblessness at home made me to finally put my thoughts into action. Didn't really know how to begin, just knew I wanted a place I could post stuff on either reasonable or crappy ones. As always, I went for my reliable search engine 'Google' and created a website which was on blogger platform. Before this time, I had no idea we had different platforms like blogger, word press, or personal website, or had any training in website design, an idea on what I wanted to post on the blog, talkless of the niche I wanted, and also that one could earn from blogging.

Also Read: Basic Tips For Blogging


The Blogging Experience

With the little experience I've gained from blogging, I can now pinpoint the mistakes I made on my first blog which was gracejoseph446.blogspot.com these were:

1. Looking at the URL, other than it's length which is too long, it's complicated with three numbers. This will be hard to recall by readers if in future they want to refer to my blog. You hardly see any professional blog using such URL.

2. No 'After the jump' Summaries: Had about 9 to 10 post on my homepage and each post had no 'read more' tag. You can already imagine how lengthy the home page was and really hard to view other post. Readers had no choice in choosing to which post to read. This will in turn reduce the page views since the content are out on display right from the first visit. It was Oluwaseun of Hallanaija who helped out with things like how to use jump breaks on blogger, reducing the number of post on the homepage to reduce the page load time, instead of a template with a dark background, a better one preferably with a bright background, also referred me to sources for my page content.

Also Read: How To Centralise Blogger Title And Description


3. Blog content: Since I had nothing in mind to blog about, I went for entertainment. It seemed easier blogging about that or copying it to paste if that counts as blogging. Now I realize having original content or even an appropriately edited form of 'copy and paste' can do your blog a lot of good. As at then, you could search for a topic on Google and my blog would fall among the ones on either the 15th or 17th pages, yes! it irritated me a lot.

4. Blogger gadgets: I had a lot of them which also contributed in increasing my blog's page load time. I spent more time trying to design my blog instead of writing relevant content. Most bloggers do this, the design of the blog is one in a million but the content of the blog isn't half as good compared to the design. Before I began blogging, I can recall I bookmarked or saved webpages that provided answers to my questions each time I searched for them on Google and this wasn't because the blog had beautiful designs but it's ability to provide relevant solutions. I returned to these blogs over and over again if I wanted to learn more. What's the use of a beautiful blog if it's empty? The only gadgets that really matter are the basic blogger gadgets.


5. Large Image size: The images were of various sizes, some too tiny while others were extra large. This was because I was blogging from phone and not even a smart phone. Couldn't upload images directly to a blogger post, So I resorted to free image hosting sites. Later, discovered I could post with images by sending them through email.

6. Inconsistency and impatience : So far I wasn't seeing any progress in my blog in terms of traffic and earning some cool cash as I've heard some bloggers testify of. I visited and posted less often and finally I deserted the blog. I'll give credit to some of my fellow bloggers like Larry Frank of Flowing Tech Blog and Johnny Ode of Readers lodge who encouraged and made me realize it wasn't also easy at first for those who finally made it at blogging. From them, I got to know the relevance of backlinks, keywords, joining high PR forums, and above all not giving up.


Within me, I still had the desire to blog, so I created this blog informationtutorial15 (the Tutor). Changed my niche from entertainment because I didn't feel contented posting other people's work on my blog, stalking the net to be the first to get the breaking news. Since my main traffic wasn't coming from Google but social networking sites, it meant less or no page views when the blog was not updated. If I was to continue blogging, I wanted to write what I know, and content that will always generate traffic for me even if it got to be years old. With the knowledge gained from my former blog, i'm now spending time on things that matter more to make my blog better. Even though the traffic isn't rollingIn in thousands now, looking at my blog I can see some significant progress which gives me the courage to blog and hope that someday i'll look back at this post and smile.
Read more »

Thursday, November 12, 2015

How to Show Ads and Gadgets In Blogger Mobile Version

Still wondering how you can make Ads and blogger gadgets appear on mobile version of blogger blogs? Waste no more time. The guidelines are given below. Most of the traffic we get are from mobile users who atimes don't view the web version of our blogs. This reduces the chances of getting clicks on ads, readers subscribing for post on the blog with the email gadget or viewing other related post which in turn increases your blog's bounce rate. For adverts, blogger gadgets like popular post gadget, labels, social media follow and subscription widget and the likes,  these guidelines will show you how to display them on the mobile version of your blog, making your blogspot blog compatible with mobile phones . Also showing ads on mobile version of blogger will be another opportunity to make money.
  •  
  • First, Goto your template
  • Click on  the gear icon for mobile settings.
 
  •  
  • Select 'Yes. Show mobile template on mobile devices'. 
  • From the drop down menu, select 'custom'.
  • Save your template.
 

Also Read: How to upload blogger template
                   How to Add HTML Parse Tool To Blogger

How to Make Ads and Gadgets Appear on Mobile Version of Blogger

  • Next, goto 'layout'.

For New Gadgets

  1. Click on 'add gadget'
  2. Select 'html/javascript', paste your code, either the ad code you generated or a blogger widget/gadget code.
  3. Save the gadget.
  4. Still in the layout section of your blog,  edit the gadget you just created.
  5. View the address bar and note the 'html number', which is the widget ID of your new gadget/widget.
  6. Next, goto your blogger 'Template', click on 'Edit html'.
  7. Select 'Jump to widget' and click on the html number you noted previously (that is, if it was html12 or html8).
  8. Add this line of code when the widget/gadget opens in your template mobile='yes', just after where "locked false" appears. Or, If you want the widget/gadget to appear only on the mobile version of your blog and not on the web version, then add this instead mobile='only'.
  9. Save your template. 

    For Existing Gadgets

    • Click on  'Edit' option for the gadget you want display on the mobile version of your blog.
    • View the address bar and note the 'html number', which is the widget ID of your new gadget/widget. 
    • Next, goto your blogger 'Template', click on 'Edit html'.
    • Select 'Jump to widget' and click on the html number you noted previously (that is, if it was html5 or html8).
    • Add this line of code when the widget/gadget opens in your template mobile='yes', just after where "locked false" appears. Or, If you want the widget/gadget to appear only on the mobile version of your blog and not on the web version, then add this instead mobile='only'.
    • Save your template.
    Also Read: How To Show Adsense Below Blogger Post Title
                       How To Centralize Blogger Title And Description

    NOTE:  Using mobile='only' might bring error messages each time you try to rearrange the gadgets in layout. It'll be advisable for you to include mobile='yes' instead. With this your ads and gadgets will now be displayed on the mobile version of your blog.
    Read more »

    Wednesday, November 11, 2015

    How to Backup Blogger Blog and Templates

    In this post, we will see how to backup Blogger blog and templates. The blog includes all your blog posts and the images. In the process of editing your blogger template, errors could occur, and with a backed up copy of your template, you can be rest assured of replacing it to its former state. Google with its strict rules has full control and also the right to delete your blog at any time without warning. Also, your account could get hacked in future by hackers who might decide to delete all your blog post or you when you mistakenly delete your post. The listed above are some of the reasons why you have to backup your Blogger blog and template for the unforeseen and by doing this, you can have the copy of your blog without all the efforts you've put in for months/years going down the drain.

     Also Read: How to Create Sitemap Page or Table Of Contents In Blogger
                        How to Add  Read More Attribution Links to Copied Text in Blogger

    How to Backup Blogger Template

    •  From your blogger dashboard, navigate to 'template'.

    how to backup blogger blog

    •  Click on 'Backup/restore'.


    • Select 'download full template'.

    how to backup blogger template

    • A dialog box appears, click on 'save as'.
    • Choose the location on your PC then save the template.
    Also Read: How to Add Custom Robots Header Tags In Blogger
                       How To Centralize Blogger Title And Description

    How to Backup Blogger Template

    •  Follow the steps listed above to access 'backup/restore' in your blogger template.
    •  Click on 'Browse'
    •  Navigate to location of the template in your PC. Select it.
    •  Click on 'upload'
    Also Read: How to Insert Tables In Blogger Post
                       How to Add 'Search Description' On Blogger

    How to Backup Blogger Post

    •  Navigate to 'settings'.
    •  Click on 'other'
    •  Click on 'export blog'
    •  Click on 'download'.


    How to Backup Entire Blogger Account

    To backup multiple Blogger blogs or the entire blog at once, go to Google takeout . Here, you can also backup all your images.
    • Select 'Blogger' for post and 'Google photos' for images.
    • Click on 'next'.
    • Select 'create archive' and then 'download' with the download that will be sent to your email.

    Those are the easy steps that you can use to backup your blogger blog, backup your blogger template, and restore the template. Encountered problems? kindly comment below.
    Read more »

    Top 60 High PR DoFollow Directory Submission Sites 2015

    High PR Dofollow Directory Submission Sites can help in increasing the number of high pr backlinks and traffic to your blog. On submitting your site to these free high PR dofollow directory submission sites, you can improve your blog's ranking in search results.

    Below, a list of top 60 High PR Do Follow Directory Submission Sites 2015 have been given, to promote your blog/site and increase its popularity, register on each of these sites, them leave a link back to your blog, preferably a link to your internal pages instead of your blog's homepage. The link juice passed by these high pr directory sites is dofollow, which have SEO benefits. Overtime, you'll notice meaningful changes in your blog's traffic and the number of backlinks pointing to it.

    Also Read: All In One SEO Pack Plugin 2015 For Blogger
                       How to Add Custom Robots Header Tags In Blogger
                       Automatically Add Nofollow Attribute to All External Links In Blogger

    Top 60 High PR DoFollow Directory Submission Sites 2015


    Free High PR Dofollow Directory Submission Sites 2015


    S.N.                      Site Name                           Page Rank
    1Site Promotion        7
    2Free PR Directory        7
    3ABC Directory        7
    4PR Web Directory        7
    5The Free Library        7
    6ElecDir        7
    7AListSites        7
    8Canada WebDir        7
    9Travel & Tourism        7
    10Ehow        6
    11HotVsNot        6
    12Ezinearticles        6
    13Dizila        6
    14Hubpages        6
    15Scrub The Web        6
    16Britain Business        6
    17Blog-Directory        6
    18Promote Business        6
    19USA Listing        6
    20Marketing Internet        6
    21Article City        5
    22Submission Web        5
    23Goarticles        5
    24
            5
    25Promotion World        5
    26Findelio        5
    27Conseillemoi        5
    28AmenianLinks        5
    29Voxcap        5
    30Vision IQ        5
    31Articlesbase        5
    32Articlealley        4
    33Articlecube        4
    34Articlesnatch        4
    35                        LinkTeve         4
    36A1Articles        4
    37Amazines        4
    38Articlebiz        4
    39Articlesfactory        4
    40
            4
    41Articlepool        4
    42Articleslash        4
    43Anaximander        4
    45Web Directory        4
    46The Free Directory        4
    47         4
    48Selfgrowth        3
    49Articletrader        3
    50Afroarticles        3
    51Articlesphere        3
    52Sooperarticles        3
    53Bharatbhasha        3
    54Artipot        3
    55Expertarticles        3
    56Uberarticles        3
    57Upublish        3
    58Articlesbus        3
    59Easyarticles        3
    60Articledashboard        2
    61Article-Buzz        2

    Also Read: Add Read More Attribution Links to Copied Text in Blogger
                       How to Create HTML Sitemap In Blogger

    Other than using these search engine submission sites listed above, you can also make use of high pr commentluv blogs and high pr social bookmarking sites to promote your blog.
    Read more »

    Sliding Recent Posts Blogger Widget 2015

    Animated Sliding Recent Posts Gadget/Widget For Blogger

    This sliding recent posts blogger widget 2015 shows the most current blog posts from one of your blogs as a slide show on the other. Got more than one blog? then you can share traffic between both blogs with this animated recent posts blogger widget, just by adding it to the one with more page views. Your readers will be linked from one blog to the other. You can also use this recent post slider widget for blogger to advertise other people's blog or they can advertise yours by adding it to their blog. Each time a new post is made, it gets updated automatically on the recent post gadget as a slider with images. The Steps below will guide you on how to add one of  the sliding recent posts blogger widgets 2015 in your blogger blog.

    Also Read:  10+ Best Blogger Tips and Tricks
                        Stylish Popular Post Widget For Blogger
                        Numbered Page Navigation Widget For Blogger Blogs

    How to Add Sliding Recent Posts Blogger Widget

    • From your  blogger dashboard,
    • Goto  'Layout' 
    • Click on  'Add a Gadget'.
    • Copy and paste one of the codes below for your preferred style of the the sliding recent posts blogger widget, then edit by replacing your URL where it's specified 'YOUR-URL'

     Style 1

    Sliding Recent Posts Blogger Widgets 2015


    <link rel="stylesheet" type="text/css" href="http://blogger-json-experiment.googlecode.com/svn/resources/blogger-feed-rotator-plugin/default-style.min.css"/>
    <div id="slider-rotator" class="slider-rotator loading"></div>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
    <script type="text/javascript" src="http://blogger-json-experiment.googlecode.com/svn/resources/blogger-feed-rotator-plugin/blogger-feed-rotator.min.js"></script>
    <script type="text/javascript">
    makeSlider({
    url: "http://YOUR-URL" // Add your blog URL
    });
    document.write('<a href="http://www.wegist.com/2015/04/jlos-ex-marc-anthony-and-new-wife.html " target="_blank" rel="dofollow"><font size="1" color="black">[Celebrity]</font></a>');
    } </script>

    Style 2


    Sliding Recent Posts Blogger Widgets 2015


    <style>
    .gfg-root {
    width: 100%;
    height : auto;
    position : relative;
    overflow : hidden;
    margin: 0 auto;
    text-align : center;
    font-size: 12px;
    border: 1px solid #DBDBDB;
    }
    .gfg-title {
    font-size: 16px;
    font-weight : bold;
    color : #6B6B6B;
    background:#F3F3F3;
    background-repeat: repeat;
    line-height : 1.4em;
    overflow : hidden;
    white-space : nowrap;
    padding: 5px;
    text-shadow: 0px 2px #fff;
    }
    .gfg-entry {
    background-color: #FFFFFF;
    width : 100%;
    height : 9.2em;
    position : relative;
    overflow : hidden;
    text-align : left;
    margin-top : 3px;
    }
    .gf-title a {
    text-transform: capitalize;
    color: #0000ff;
    font-size: 14px;
    }
    .gfg-subtitle {
    display: none;
    }
    .gfg-list {
    position : relative;
    overflow : hidden;
    text-align : left;
    }
    .gfg-listentry {
    line-height : 1.5em;
    overflow : hidden;
    white-space : nowrap;
    text-overflow : ellipsis;
    padding-left : 15px;
    padding-right : 5px;
    }
    .gfg-listentry-odd {
    background-color : #F3F3F3;
    border-bottom : 1px dotted #CCCCCC;
    padding: 5px;
    }
    .gfg-listentry-even {
    background-color : #F3F3F3;
    border-bottom : 1px dotted #CCCCCC;
    padding: 5px;
    }
    .gfg-listentry-odd a{
    color: #595959;
    padding: 0 0px 0 10px;
    }
    .gfg-listentry-even a{
    color: #242424;
    padding: 0 0px 0 10px;
    }
    .gfg-listentry-highlight {
    background: #FFFFFF;
    }
    .gfg-listentry-highlight:before {
    position: absolute;
    left: 0;
    content: '\25BA ';
    font-size: 14px;
    color: #DBDBDB;
    }
    .gfg-listentry-highlight a {
    color: #242424;
    }
    .gfg-root .gfg-entry .gf-result {
    position : relative;
    background-color: #ffffff;
    width : auto;
    height : 100%;
    padding-left : 20px;
    padding-right : 5px;
    }
    .gfg-root .gfg-entry .gf-result .gf-title {
    font-size: 14px;
    line-height : 1.2em;
    overflow : hidden;
    white-space : nowrap;
    text-overflow : ellipsis;
    margin-bottom : 2px;
    margin-top: 5px;
    }
    .gfg-root .gfg-entry .gf-result .gf-snippet {
    height : 3.8em;
    color: #000000;
    margin-top : 3px;
    }
    .clearFloat {
    clear : both;}</style>
    <script src="http://www.google.com/jsapi" type="text/javascript"></script><script src="http://www.google.com/uds/solutions/dynamicfeed/gfdynamicfeedcontrol.js" type="text/javascript"></script>
    <script type="text/javascript">
    function showGadget() {var feeds = [{title:'List',url:'http://YOUR-URL/feeds/posts/default?redirect=false&start-index=1&max-results=10'},];
    new GFdynamicFeedControl(feeds, 'feedGadget',{title: 'Latest Posts', numResults : 10, displayTime : 5000, hoverTime : 500});} google.load("feeds", "1");
    google.setOnLoadCallback(showGadget);
    </script>
    <div id="feedGadget">Loading...</div>


    4.  Save the blogger widget and view your blog for the changes.


    Also Read:  Social Media Follow Buttons Widget For Blogger
                        Email Subscription Widget For Blogger

    You have successfully added the animated sliding recent post blogger widget on your blog.
    Read more »