Home » Posts

Display Blogger Posts In Grid View Mode With Thumbnails

Source : helplogger.blogspot.com
Hello Friends how are you I'm after a month with the interesting tutorial which i can share with today last time we had shared a helpful trick that is how to host JavaScript and CSS files in Safe place i hope this post are really helped you so any way today i am going to share a trick which is are very useful and beautiful for your blogger blog. So today I sharing Grid View with Thumbnails is a script for self-hosted Blogger blogs which will display blog posts as a thumbnail grid of images in homepage and archive pages. Instead of sending your blog visitors to a page that displays all the posts in full length with a large image which takes up too much space and requires too much scrolling, now you could have a clean page that displays a gallery grid, with thumbnails and post titles, linking back to the source post for that thumbnail.

Before implement this take a look of its demo by clicking the below live demo button.

                                                                       Live Demo

If you have a picture gallery or any type of wallpaper blog then this trick are best suitable in your wallpaper blog because this trick are show only thumbnails in your blogger blog home page.

How To Implement This?

After some gaining knowledge about this tutorial let's begin the tutorial but you make sure that you have a backup of your blogger template and properly saved in your hard disk. To Add This style in your blogger just follow below steps.

  • Go To Blogger Dashboard>>Template>>Edit HTML
  • Find below tag using (Ctrl+F)
</head>

  • Just above the </head> tag, Paste the following below code.

 <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.1.0.js"></script>
<b:if cond='data:blog.pageType == &quot;index&quot;'>
<script type='text/javascript'>//<![CDATA[
$(document).ready(function() {
    var width = 200;
    var height = 170;
    var placeholder =
'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEinuqFe2NpfnMKpvDV_Fv0ReruwX-VZ-4zRaIqf_AepduwAbGmFw_NXyzfcWHCyBNFg3Nt4Vj6aX8t02aVgkBh1OHD9dw9s5jXvEeHuba6iNXNB2Q1p1YuGer-yZTDkWRfwCbzaDue0E-E/s1600/no-thumb.png';
    var margins = "0px 0px 10px 10px";
    var fitThumb = 1;
    var titleTopPadding = 5;
    var titleBottomPadding = 8;
    var titleLeftRightPadding = 5;
    var titlePadding = titleTopPadding + 'px ' + titleLeftRightPadding + 'px ' + titleBottomPadding + 'px ' +
titleLeftRightPadding + 'px';
    $('.post-body').each(function(n, wrapper) {
        var wrapper = $(wrapper);
        var image = $(wrapper).find('img').first();
        var link = wrapper.parent().find('h3 a');
        var linkURL = link.attr('href');
        var linkTitle = link.text();
        $(link).remove();
        wrapper.empty();
        if (image.attr('src')) {
            var thumbHeight = image.attr('height');
            var thumbWidth = image.attr('width');
            var thumbParent = $(image).parent();
            wrapper.append(thumbParent);
            if (fitThumb) {
                image.attr({
                    src: image.attr('src').replace(/s\B\d{3,4}/, 's' + width + '-c')
                    });
                image.attr('width', width).attr('height', height);
            } else {
                image.attr({
                    src: image.attr('src').replace(/s\B\d{3,4}/, 's' + width)
                    });
                image.attr('width', width);
                var changeHeight = (thumbHeight / thumbWidth * width).toFixed(0);
                image.attr('height', changeHeight);
            }
        } else {
            var image = $('<img>').attr('src', placeholder).attr('height', height).attr('width', width);
            var thumbParent = $('<a>').append(image).appendTo(wrapper);
        }
        thumbParent.attr('href', linkURL).css('clear', 'none').css('margin-left', '0').css('margin-right',
'0').addClass('postThumbnail');
        var thumbTitle = $('<div>').prepend(linkTitle).css('padding', titlePadding).css('opacity', '0.9').css('filter',
'alpha(opacity=0.9)').css('width', width).appendTo(thumbParent);
        var ptitleHeight = thumbTitle.height();
        var summary = parseInt(ptitleHeight) + parseInt(titleTopPadding) + parseInt(titleBottomPadding);
        thumbTitle.css('margin-top', '-' + summary + 'px');
        wrapper.css('float', 'left').css('height', height).css('width', width).css('margin', margins).css('overflow', 'hidden');
    });
    $('#blog-pager').css('clear', 'both');
});
function hideLightbox() {
    var images = document.getElementsByTagName('img');
    for (var i = 0; i < images.length;++i) {
        images[i].onmouseover = function() {
            var html = this.parentNode.innerHTML;
            this.parentNode.innerHTML = html;
            this.onmouseover = null;
        };
    }
}
if (window.addEventListener) {
    window.addEventListener('load', hideLightbox, undefined);
} else {
    window.attachEvent('onload', hideLightbox);
}
//]]>
</script>
<style>
.post {
    border-bottom: 0 dotted #E6E6E6;
    margin-bottom: 0;
    padding-bottom: 0;
}
h2,.post-footer {
    display: none;
}
a.postThumbnail div {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-transform: capitalize;
    background: rgb(125,126,125);
 /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(125,126,125,1) 0%, rgba(14,14,14,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(125,126,125,1)),
color-stop(100%,rgba(14,14,14,1)));
 /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(125,126,125,1) 0%,rgba(14,14,14,1) 100%);
    background: -o-linear-gradient(top,  rgba(125,126,125,1) 0%,rgba(14,14,14,1) 100%);
    background: -ms-linear-gradient(top,  rgba(125,126,125,1) 0%,rgba(14,14,14,1) 100%);
    background: linear-gradient(to bottom,  rgba(125,126,125,1) 0%,rgba(14,14,14,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=&#39;
    #7d7e7d&#39;, endColorstr=&#39;#0e0e0e&#39;,GradientType=0 );
}
a.postThumbnail:hover div {
    display: block;
}
.post-body img {
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    opacity: 1;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
}
.post-body img:hover {
    -ms-filter: &quot;
    progid: DXImageTransform.Microsoft.Alpha(Opacity=70)&quot;
    ;
filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
}
</style>
</b:if>

  • Click On Save Template.
  • You've Done!
Last Words

So friends this is our today's tutorial and I hope this tutorial are really helped you if you're facing problems or getting errors during this process so please leave your comments for your solutions and don't forget to like our Facebook page and also share this tutorial with your friends on social networking sites.
Happy Blogging!
Saturday, September 06, 2014

New Pure CSS Sitemap Page For Blogger


CSS Sitemap Page For Blogger Blogs
As we had previously shared a cool and helpful trick for blogger blogs. This tricks can helped maximum peoples to setup their image quality in blogger blog. My means that if you created a blogger blog. if your blogger profile are connected to your Google plus profile then you notice that after you can upload an image on your blogger blog then after completed process of uploading then images's color are automatically changed just after uploaded. This is a big problem for blogger blog to loss your visitors. Then I will shard that  How to fix image quality after uploading in blogger blog. But Today I going to sharing this new stylish CSS sitemap page for blogger blog. When you surfing our blog you might have seen in the bottom of this can that Sitemap Page link. If you've not seen our latest and all blog published posts then you have look on our blog's sitemap page. Sitemap is very necessary and very important for every blog and websites because this page has decide that how many post are published in your blog. This page make the navigation more easier because this sitemap page is the next version of old sitemap page. This page include your all post and this page updated every time on your blog. With the help this page your visitors are easily find and navigate your all published post are sorted by Date and Labels. This page also helps search engine's crawler to index your post and pages easily. After add this page your first seen this page's live demo by clicking below green button.
                                                                          Live Demo
How This Work?
After seen this page's demo now I would like to explain that how this made and how this work. Firstly this widget is made by CSS and Built with JavaScript This pages has not effect to your blogger blog loading speed it just required a blank page. This widget is created by Prajjwal Rajput so, all credits goes to them. This page is specially made for blogger platform blogs. It has a cool navigation and tabbed contents. This page is also called automatic sitemap page because this page is automatically add your latest and recent posts without editing this page is. So even better for us we don't need to change and update this sitemap page daily just after added in your blogger blog. This page also shows labels and date/Time with the posts titles it has great ability that when your mouse over on any post title then you will show their description and beginning words. This page is making using the JavaScript and CSS.

How To Install This Sitemap Page?
Well, after some gaining knowledge and information about this sitemap page now this time to add this page in your blogger blog it was so simple to add this in blogger blog you can just follow my simple steps. After Installing this sitemap page please make your blogger template backup and save it in your hard disk.

  • Go To Blogger Dashboard>>Template>>Edit HTML.
  • Find this below code using (Ctrl+F)
]]></b:skin>

  • Paste the following code just above it.
------------------------------------------------------*/
CSS Sitemap Page By Www.NextBloggerTricks.Com
------------------------------------------------------*/
#bp_toc {
  border: 0px solid #000000;
  background: #ffffff;
  padding:10px 0;
  width:100%;
  margin-top:10px;
}
#bp_toc a{
text-decoration:none !important;
}
#bp_toc a:hover{
text-decoration:underline !important;
}
.toc-header-col1, .toc-header-col2, .toc-header-col3 {
padding:10px;
background:#292929;
width:250px;
border-bottom:5px solid #99dbff;
}
.toc-header-col2{
border-right:2px solid #ffffff;
border-left:2px solid #ffffff;
}
.toc-header-col2 {
width:75px;
border-bottom:5px solid #ed4e69;
}
.toc-header-col3 {
  width:125px;
}
.toc-header-col1 a:link, .toc-header-col1 a:visited, .toc-header-col2 a:link, .toc-header-col2 a:visited, .toc-header-col3 a:link, .toc-header-col3 a:visited {
    font-family: "Trebuchet MS", sans-serif;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4em;
    font-style: normal;
    border-collapse:separate;
  color:#ebebeb;
  text-decoration:none;
}
.toc-header-col1 a:hover, .toc-header-col2 a:hover, .toc-header-col3 a:hover {
  text-decoration:underline;
}
.toc-entry-col1, .toc-entry-col2, .toc-entry-col3 {
padding: 10px;
background:#f8f8f8;
border-bottom:2px solid #ffffff;
}
.toc-entry-col2{
border-right:2px solid #ffffff;
border-left:2px solid #ffffff;
}
.toc-entry-col1 a, .toc-entry-col2 a, .toc-entry-col3 a {
color:#45818e;
font-size:12px;
font-family:verdana;
}
.toc-note{
background-color:#333333;
padding:10px;
font-size:20px;
display:inline-block;
*display:inline;
zoom:1;
text-align:center;
color:#999999;
}

  • No Save Your Template.
  • Go To Blogger Dashboard>>Pages>>New Page
  • Choose Blank Page.
  • Enter your Page title ( i.e.Sitemap )
  • Go To HTML Tab like below Image.
  • Paste the Following code in there HTML Tab.
<div id="bp_toc">
<script src="https://nextbloggertricks.googlecode.com/svn/trunk/Sitemap%20By%20NBT.js" type="text/javascript"></script>
<script src="http://nextbloggertricks.blogspot.com/feeds/posts/summary?alt=json-in-script&max-results=500&callback=loadtoc" type="text/javascript"></script></div>
  • Click On Publish Button to Publish your sitemap Page.
  • That's all!
  • CONGRATULATIONS! You're successfully add this New Css Pure Sitemap Page in your Blogger Blog.
Last Words
So friends this is the our today fresh tutorial and I can promised you that next time I'm comes with interesting and useful articles. I hope you can successfully add this page in your blogger blog if not? you're facing problems or getting error during this process so feel free to ask comments box for your solutions. and don't forget to like our Facebook page and also share this post with your friends on social networking sites.
Happy Blogging!

Friday, August 01, 2014

How To Fix Image Quality After Uploading In Blogger

Hi Bloggers how are you? As we're in last post discussed about that how to make and offer giveaways in blogger blog. This is very good method to host giveaways on your blogger blog and then get more comments, Facebook Fans, Twitter Follower, Google+ Followers and much more. So click this link to learn that how to make giveaways and competitions in blogger blog. After the long time I'm back with the helpful tutorial and I'm going to share this helpful and 100% working tutorial with you.

If you can using Blogger platform for your blog, then you might have notice that when you uploading a image in your blogger blog, after completed of uploading process then you have seen that the image has automatically color change after uploaded in blogger blog

Causes Of This Problem:-
This is a very big problem for your blogger blog because image is most important content in your blog post maximum visitors seen your blog post image on anywhere. This problems is created from your Google+ account. If you're connected your blogger file to Google+ so this is main reasons of this problem. You have seen above image you have seen in left side of this image is grey colored image because this image automatically change his color. In the right side this original image because this picture is not uploaded blogger. If you've solve this problem just you go to the your google plus profile settings page there you have seen auto enhance section you can just click on off option and save then then your image are properly upload without any color changing just like original image.

How To Fix This Problem?
Now this time to solve and fix this image uploading problem in blogger it is very simple to fix this you an just access your Google plus account then you can choose the option auto enhance off then you're done. Just follow below steps.

  • Go To Your Google Plus Settings Page .
  • Now Scroll down at the bottom You can seen the Auto Enhance Section this section says that "Automatically Enhance new photos and videos." You can just select Off Option and you will be automatically saved just clicking after the Off Option. See below image for better understand.
  • You can just choose off option and you're done.
  • CONGRATULATION! you're successfully to solve this problem.
Final Words
So friends here are simple and easy steps to fix and solve this problem for your blogger blog uploaded image quality I hope this post are really helped you. if you've any question then feel free to ask below comments box and don't forget to like our Facebook Page.
Happy Blogging! | Best Of Luck!

Thursday, July 31, 2014

How To Add Load More/Infinite Scrolling Effect In Blogger

As we've previously discussed about the Appearance of blogger blog which means in the blogging competition are very huge program to prove your blog is more attractive and more beautiful better that others. Recent, I shared the Flat 3D Colorful Cloud labels Widget For Blogger with the complete guide for pro and newbie both types of bloggers. Today I'm going to sharing a tutorial for your blogger blog appearance and more attraction. that is How To Add Infinite Scrolling Effect In Blogger Blogs. This Effect make your blogger blog more beautiful and more professional. Basically This Effect was developed for Facebook And WordPress blogs templates, In Facebook when you can open your home page of your Facebook account then you can scrolling to read the updates continuously then you will seen in bottom of page an little cute loading gif image this is very cool and more attractive effect but some bloggers want to add this in their blogger blog. But Today we can also use in Blogger blogs templates. This effect shows only on your blogger blog Homepage. When any one visit your blogger blog homepage there he/she will see the minimum and after the loading see maximum posts, as he scrolls down then automatically or animation, Load More post with animated and dashing style. So let's me explain that how it work on Blogger Templates. You can see demo of this infinite scrolling effect in blogger through the clicking the below button.

How This Work?

We're made this Infinite Scrolling Effect with the help of JQuery and some JavaScript files. When you can go your blog home page then you will see the minimum posts on your same page and as you scroll down with the help of your mouse, automatically more will loaded with the Dashing Loading Style. This will help to your visitors get even more posts and articles instantly and your visitors served the posts better. I will replaced this Jquery with older and newer pages links with the dashing styles. This effect was built with the Pure JQuery and JavaScript. If you've enabled the JavaScript option in your browser then it will appear on your homepage otherwise not.

But This Effect has some disadvantages to make your blogger blog bad. As I tell you in above paragraph that I was made this effect with the help of JavaScript and Jquery so there are many visitors of your blogs who disable the JavaScript in their browser for the faster internet surfing. He/she will be disabled the JavaScript of their browser they then he/she will be not able to see this effect and your blogger blog not working with this effect only disabled javasript browsers. This effect support only JavaScript Enabled browsers If you was disabled your javascript then you will be enabled it from your browsers settings.

How To Install This Effect In Blogger Blogs?

After gaining some knowledge about this infinite scrolling effect I was already developed the code so you no need to make your code. Now let's time to add this in your blogger blog it is so simple to implement this in blogger blog. Just follow below steps.

  • Go To Blogger Dashboard>>Template>>Edit HTML
  • Find the below tag Using (Ctrl+F)
</head>
  • Paste the Following Code above the </head>
<b:if cond='data:blog.pageType == "index"'>
<script src='//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js'/>
<script src='http://next-blogger-tricks.googlecode.com/svn/trunk/Infite%20Scrolling%20by
%20NextBloggerTricks.js' type='text/javascript'/>
<script type='text/javascript'>
jQuery.ias({
    container : '.blog-posts',
    item: '.post-outer',
    pagination: '#blog-pager',
    next: '#blog-pager-older-link a',
    loader: 'https://lh5.googleusercontent.com/-PEv8OFUamwc/U8k_KPDDO9I/AAAAAAAAAkA/YU4P7JtibQ4/h120/loading-blue.gif'
});
  </script>
</b:if>

  •  Replace the Red highlighted link with any .gif Loading Image links. Copy the Loading GIF Images URL from the following.
  • Click On "Save Template"!
Ajax Loading GIF Images

I have some ajax loading animated loading gif images choose one of the following and replace the red highlighted image link with your chooses image.

Facebook Styles


https://lh4.googleusercontent.com/-lHlQW6jV550/U8lDMZcxhcI/AAAAAAAAAkM/_6cKBFiFHSw/h120/Facebook+Style.gif
Blue Loading Style
 https://lh5.googleusercontent.com/-SVqx6fnNIsE/U8lDoDwnBjI/AAAAAAAAAkU/ebf5zSDOcug/h120/loading-blue.gif 
Horizontal Loading Style 

https://lh6.googleusercontent.com/-r43q1bdPEL4/U8lEIpD2c5I/AAAAAAAAAkg/qM4pTDvfMgA/h31/hori.gif
Rounding Arrows Style 
https://lh6.googleusercontent.com/-r43q1bdPEL4/U8lEIpD2c5I/AAAAAAAAAkg/qM4pTDvfMgA/h31/hori.gif
 Green Border
https://lh4.googleusercontent.com/-izthMBEVv_Q/U8lFCivcv1I/AAAAAAAAAkw/JAL_IZxkEIA/h120/loading2-green.gif
Final Words 
So friends this is our today's and most viewed post of our site this is a best method to improve your template professionalism and more attractive I hope you're successfully add this effect in your blogger blog if not? you're facing problems or getting error during this process so leave comments for solutions and don't forget to like our Facebook page and also share this tutorial with your friends on social networking sites.
Happy Blogging!
Friday, July 18, 2014

How To Invite Multiple Authors In Blogger

Hello bloggers today I'm back with the interesting and useful post for your blogger blog. As we've previously discussed about Robots.txt file in which your blog are easily founded by Search engine's bots and also it increase your daily page views if you're not read our previous post so, don't worry click this link How To Enable Robots.txt File In Blogger Blogs This post very important for your blog SEO because this robots.txt file are use all bloggers and webmasters used in their blogs and websites. In daily blogger life this multiple invite authors are very necessary for every blogger because if you've a urgent work or you've to spent some time then you can use this invite multiple author method in your blog because this is very helpful for your blogger blog. This is best thing once you can invited more than two authors to your blog then ig you're not update you blog then your invited author are written posts for your blogger blog in other words if you're not have internet to published your post then your new author has published posts in your blogger blog without any mistakes or problems. Like my website I can already use this method. One day I was gone to trip during this trip I've not a laptop and internet for written posts for my blog and then I will back to home then I can check my blog page views I can see that my today's traffic are very less it will very bad notice for blogger blogs. Then next day I was found this post from search results and I'll understand that how to continuously increasing traffic when you've not internet for publishing posts then you've more ways to not deceasing you traffic and your invited authors then they are written posts for your blogger blog.

If you ever considered working on your blogger blog with invited multiple authors and you would to like other more people to publishing posts, you can invite multiple authors on your blogger blog. this method is also known as guest posting in blog.

The Posts are published by two types of bloggers the first is an administrator and the second is an author both are using post editor to published posts on a single blog bu some difference between them you'll read its differences and jump to begin this tutorial.


  1. An Administrator : Administrator will have to complete and full access to the blogger blog. He/she can change template, add/remove widgets, delete/published posts made by invited authors, add/remove other authors or transfer the ownership of blogger blog.
  2. An Author : Authors can only read and write for for blogs, remove themselves from this blog authorship, edit published posts made by other authors or administrator, he/she will be access the posting options and add a mobile device for posting through the SMS.
How To Invite Authors On Blogger Blogs?
Well, after gaining some knowledge about invited authors and administrator now let's time to invite authors to your blogger blog. Just follow below steps.
  • Go To Blogger Dashboard>>Settings>>Basic
  • Now, look at the bottom in Permission Section
  • You will see Blog authors if you want to invite authors on your blog 
  • Click on +Add Authors to add authors 
  • See below image for better understanding.
  • Enter Email ID for each author to sent invitation.
  • After adding some Email IDs now click on Invite Authors 
  • You're done
  • That's it!
You can also change Author status in the Permission section of the settings>>basic tab to Admin.
Warning : Please proceed with cautions! Administrator have as much power over your blogger blog as you do. including the ability to permanently deleted.

Final Words
So friends this is how to invite multiple authors on blogger blogs and I promise you I will back again with helpful and useful blogger tutorial for shared with you if you're facing problems and getting error during this process so please leave comments for solutions and don't forget to like our Facebook page and aslo share this tutorial on social networking sites with your friends.
Happy Blogging!
Sunday, July 13, 2014

Add Professional Author Bio Box In Every Posts For Blogger

Hello Bloggers today I'm back with a awesome beautiful posts for your blogger blog. But we had previously discussed the How To Invite Multiple Authors in Blogger Blogs I hope that posts are very helpful for you and your blogger because this posts are using I thing all bloggers and webmasters to daily publishing new post on their blog and sites this post are very helpful which is going to help you definitely. So lets walk to our today's post that is how to add professional looking author bio box in every post bottom in blogger blogs. This widget is also called as About Author Widget. because this contain lots of feature are represent to blog's author which is easily read your own information by your blog visitors. I think you can see this widget   approximately all websites and blogs. This about author box contains lots of features such as author profile pictures, author bio or introduction, hover effect on author image and social medias buttons with thumbnails. You can see it's live so click below Live Demo button.

I hope you can see it's demo and you're like this widget? I know you are like this widget and now your wish to add this in your blogger blog. Before begin the tutorial I would like to explain its feature and I can explain that how it work and how it made.

How It Work?
This Author box widget work only CSS and HTML language which make it's more beautiful, elegant and attractive this widget approx all browser supported Internet explorer to Maxthon web browser so you no need to add additional codes to working in all browsers this widget is hover effect function is include because  it is specially made for attraction and this function has build with CSS hover effect means when your mouse going to your image then your image is automatically animated through the CSS.

How It Made?
This widget is made from HTML and CSS languages which makes it more beautiful, faster and attractive. This widget specially made for blogger platform base blogs because in currently days blogger platform has used by million of bloggers.This author bio box are originally designed and developed by Prajjwal Rajput so all credits goes to them. now let's jump to start this tutorial to install this in your blogger blog.

How To Install This In Blogger Blogs?
My Advise : I think you can make your blogger template backup and save in your hard disk before install this widget in your blog. Just follow below steps.

  • Go To Blogger Dashboard>>Template>>Edit HTML
  • Find this below code using (Ctrl+F)
]]></b:skin>

  • Then Paste the following below code above it.
.NBT-aboutauthor{
float:left;
width:500px;
padding:15px;
border:1px solid #ccc;
margin-bottom:15px;
margin-top:15px;
background:url('http://3.bp.blogspot.com/-t5gDiTb7yUc/UjiYfNUgBBI/AAAAAAAACXI/J1tb_tlU5-k/s1600/backgrounds.png');
color:#444444;
-webkit-box-shadow:0px 0px 10px  rgba(0, 0, 0, .3);
-moz-box-shadow:0px 0px 10px  rgba(0, 0, 0, .3);
box-shadow:0px 0px 10px  rgba(0, 0, 0, .3);
}
.NBT-aboutauthor h2
{
color:#1399E6;font-family:Helvetica,Arial;font-weight:bold;text-shadow:#64665b 0px 1px 1px;font-size:28px;margin-bottom:-6px;
}
.NBT-aboutpic{
float:right;
margin:0 0 0 10px;
}
.NBT-aboutpic img{
border:1px solid #999999;
-webkit-transition:-webkit-transform .15s linear;
-moz-transition:-moz-transform .15s linear;
-o-transition:-o-transform .15s linear;transition:transform .15s linear;
-webkit-box-shadow:0 3px 6px rgba(0,0,0,.25);
-moz-box-shadow:0 3px 6px rgba(0,0,0,.25);
box-shadow:0 3px 6px rgba(0,0,0,.25);
padding:5px 5px 5px 5px;-webkit-transform:rotate(+5deg);
-moz-transform:rotate(+5deg);-ms-transform:rotate(+5deg);
-o-transform:rotate(+5deg);transform:rotate(+5deg);float:left;
}
.NBT-aboutpic img:hover{
background:#FFFFFF;
-webkit-box-shadow:0px 0px 10px  rgba(0, 0, 0, .3);
-moz-box-shadow:0px 0px 10px  rgba(0, 0, 0, .3);
box-shadow:0px 0px 10px  rgba(0, 0, 0, .3);
-webkit-transform:rotate(-1deg);
-moz-transform:rotate(-1deg);
-ms-transform:rotate(-1deg);
-o-transform:rotate(-1deg);
transform:rotate(-1deg);
}
.NBT-aboutsoc img
{
height:35px;
margin-bottom:-13px;
}
.NBT-aboutsoc  p
{
font:16px georgia;
color:#ffffff;
background:#1399E6;
display:inline;
border-radius:5px;
padding:5px;
margin-right:30px;
}
  • Now find the below code
<data:post.body/>
  • I you can see <data:post.body/> more than one 
  • then you can stop at second one
  • Then paste the below code above it
<b:if cond='data:blog.pageType == "item"'>
<div class='NBT-aboutauthor'>
<div class='NBT-aboutpic'>
<img alt='Author image' height='150' src='profile picture address' width='150'/>
</div>
<h2 >About the Author :</h2>
<p>Add Your Bio Here </p>
<div class='NBT-aboutsoc'>
<p> Connect with him on : </p><a href='Facebook address'><img src='https://lh5.googleusercontent.com/-h5NAlLQWiM8/U8JWT0HroFI/AAAAAAAAAhE/vtZ504Brf94/h120/facebook.png' title='Facebook'/></a>    <a href='Twitter address'> <img src='https://lh3.googleusercontent.com/--N6LpzPfuzk/U8JWTzzRDFI/AAAAAAAAAhA/5tX4HzVO8UE/h120/twitter.png' title='Twitter'/></a> <a href='Google plus address' > <img src='https://lh3.googleusercontent.com/-eh1fKbbGL_Q/U8JWTlTCWMI/AAAAAAAAAg8/Zj3n_WKvTaw/h120/Logo_googleplus_64x64.png' title='Google plus'/></a></div>
</div>
</b:if>
  • Replace Author image with your author image
  • Replace Add Your Bio Here with your short bio or introduction\
  • Replace Facebook address with your Facebook Page Address and so on.
  • Finally Save Template
  • That's all.
Final Words
I hope this tutorial are really helped you if you're facing problem or getting error during this process so leave comments for solutions and don't forget to like our Facebook Page and also share this article with your friends on social networking sites.
Happy Blogging!


Create Sitemap Page in Blogger

Hello Friends we're previously shared an amazing widget and simple plugin for Blogger blogs click this link Recent Posts Widget for Blogger Blogs and today I am back with another widget and plugins. When you surfing our blog you might have seen Sitemap Page link. If you've not seen your favorite posts then have look on our blog's sitemap page. Sitemap is very necessary for Ads. Sitemap page help you to make the navigation easier and also improve your page rank. It also helps your visitor to easily find their post sort by labeled. It also your blogs internal linking this is the best thing of this sitemap page because in this sitemap page you will see all the published and latest or recent posts on your blogger blog. It also helps search engine's crawler to index the content and webpage easily. So, in this tutorial we're going to share this sitemap page for blogger blogs.

How It Work?

Before add this sitemap page in your blogger blog. I would like to explain you that how it work on blogger blog. First of all this is simple and clean sitemap page which is made for specially based on blogger platform
blogs. It only available in one color theme that is Blue which you can see in Sitemap page link. This is automated sitemap page which is automatically adds your last time published posts in other words, this widget added your latest posts automatically without touching this page it so even better for us we don't need to change and update this page just after added in your blog. It will do all the work itself. This Sitemap page, you can see your post categorized by labels which is better for visitors that they can any type of posts or articles in this page easily. This sitemap Page making from using the CSS and JavaScript.

How To Create Sitemap page in Blogger Blog?

It is the most easiest task to add Sitemap page in your blogger blog. Just follow the given below steps.

  • Go to Blogger Dashboard>>Pages
  • Click on New Page>>Blank Page
  • Enter your Page title (Recommended Sitemap)
  • Go to HTML Tab like below image
  • Paste the below code in there HTML Tab.


<div dir="ltr" style="text-align: left;" trbidi="on">
<br />
<style type="text/css">
#toc{
width:99%;
margin:5px auto;
border:1px solid #2D96DF;
-webkit-box-shadow:4px 4px 8px 2px rgba(0,0,0, 0.2);
-moz-box-shadow:4px 4px 8px 2px rgba(0,0,0, 0.2);
box-shadow:4px 4px 8px 2px rgba(0,0,0, 0.2);
}
.labl{
color:#FF5F00;
font-weight:bold;
margin:0 -5px;
padding:1px 0 2px 11px;
background:-moz-linear-gradient(right,#C2EAFE 0%,#055A85 40%);
background:-webkit-gradient(linear,left 10,right 80,color-stop(0.20,#055A85),color-stop(1,#C2EAFE));
border:1px solid #2D96DF;
border-radius:4px;-moz-border-radius:4px;
-webkit-border-radius:4px;box-shadow:3px 3px 1px #bbb;
-moz-box-shadow:3px 3px 1px #bbb;-webkit-box-shadow:3px 3px 1px #bbb;display:block;
}
.labl a{
color:#fff;
}
.labl:first-letter{t
ext-transform:uppercase;
}
.new{
color:#FF5F00;
font-weight:bold;
font-style:italic;
}
.postname{
font-weight:normal;
background:-moz-linear-gradient(right,#C2EAFE 0%,#fff 40%);
background:-webkit-gradient(linear,left 80,right 10,color-stop(0.60,#fff),color-stop(1,#C2EAFE));
}
.postname li{
border-bottom: #ddd 1px dotted;
margin-right:5px
}
</style>

<br />
<div id="toc">
<script src="https://googledrive.com/host/0ByNodV_m9cVLR0pmWFgwZ1NmdW8/" type="text/javascript"></script>
<script src="http://www.nextbloggertricks.blogspot.com/feeds/posts/default?max-results=9999&amp;alt=json-in-script&amp;callback=loadtoc">
</script></div>
</div>

  • Replace  http://www.nextbloggertricks.blogspot.com with your blog URL
  • Click on publish Button
  • Finish Enjoy!
Final Words


I hope you can add this sitemap page in your blogger blog properly, if not? you're getting error during this process please leave a comment and don't forget to like our Facebook page.
Happy Blogging!
Thursday, June 19, 2014

Register To Our Newsletter!

Love to read our articles? Register now to get fresh content about Blogger Tricks, SEO, Widgets, Templates directly to your inbox.