331A96E0-3037-43FC-8D93-543B900B11C9

😍 Loving this theme? Download

Please enter at least 3 characters.

Add An Elegant HTML Sitemap Page to Blogger Blog

Sitemap page lists all published posts of a blog. Learn how to add beautiful and elegant HTML sitemap page to your blogger website.
Add An Elegant HTML Sitemap Page to Blogger Blog
Professional Blogger Sitemap Page For Free
A sitemap page is one of the must have pages on every blog. It helps in a number of ways to increase the user engagement on our blog and makes it more user friendly.

By using the sitemap page, visitors of our blog can easily navigate through the all of our published content under different categories they are interested in.

Ultimately our blog's page-views increase and bounce rate decrease. Good for SEO, no? :)

After using the sitemap page on my blog for a long time now, I can say it is one of the most visited pages on my blog. When visitors find out the content on your blog more useful, they hunt for more content like this on your blog and if a sitemap page is available on your blog, what else do they need more?

This tutorial has been requested multiple times and I could not come up with it on time due to some personal reasons. Today I am sharing the exact code I am using on my blog for sitemap.

UPDATE: 27/7/2018

Google Drive has Stopped Hosting so I have updated JavaScript file to Github.



Credits-
The code I am going to share is issued by +Taufik Nurrohman. He is from Indonesia and he has done so much for blogger platform users by releasing the amazing scripts for free. We owe to him.

Most of the template designers who are selling blogger templates on ThemeForest.com use his scripts to add amazing functionalities and awesome features to their templates.

Visit DTE Project on Googlecode to find out all of his creations including the Tabbed Table of Content code I am about to share today.



Please note that I did not add any new functionalities or modified this sitemap code but I just played with the CSS code to give it an elegant look and to match the color theme of my blog.

You can do the same and I'll explain it in detailed steps. Lets begin the process.

Recommended: Create Professional Looking Landing Pages On Blogger Blog

Step 1. Create A New Page On Your Blog

First of all just create a new page on your blog then change the page settings and switch to HTML mode. Enter the name of the page as "Sitemap" in the Title area to get the same permalink for your new page. See the screenshot below.

Creating A New Page On Blogger


Step 2. Copy And Paste The Whole JavaScript and CSS Code

When you'll switch to the HTML mode, you'll see the few lines of HTML code inside the post editor already added by default so just select those all and remove them. Now paste the whole code given below in the post editor. For further customization and to match the color scheme of your blog, read the Editing step given below the code.

// Designed and Shared By TwistBlogg.com  
<div id="tabbed-toc"> <span class="loading">Loading,
please wait for a moment...</span></div> <br /> <script type="text/javascript"> var tabbedTOC= {
    blogUrl: "https://www.twistblogg.com", // Enter your blog URL
    containerId: "tabbed-toc", // Container ID
    activeTab: 1, // The default active tab index (default: the first tab)
    showDates: false, // `true` to show the post date
    showSummaries: false, // `true` to show the posts summaries
    numChars: 200, // Number of summary chars
    showThumbnails: false, // `true` to show the posts thumbnails (Not recommended)
    thumbSize: 40, // Default thumbnail size
    noThumb: "", // A "no thumbnail" URL
    monthNames: [ // Array of month names
    "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], newTabLink: true, // Open link in new window. `false` to open in same window
    maxResults: 99999, // Maximum post results
    preload: 0, // Load the feed after 0 seconds (option => time in milliseconds || "onload")
    sortAlphabetically: true, // `false` to sort posts by published date
    showNew: 7, // `false` to hide the "New!" mark in most recent posts or define how many recent posts are to be marked by changing the number
    newText: " - <em style='color: white;padding: 1px 5px;border-radius: 20px;background-color:  #F00;'>New!</em>"  // HTML/CSS for the "New!" text
}
;
</script> <script src="https://amanbhattarai4400.github.io/csshosting//sitemap_javascript.js" type="text/javascript"></script> <style>
/*Sitemap  */
#tabbed-toc {
    width: 99%;
    margin: 0 auto;
    overflow: hidden !important;
    position: relative;
    color: #222;
    border: 0;
    border-top: 5px solid #FC0204;
    background-color: #1D1D1D;
    -webkit-transition: all 0.4s ease-in-out;
}

#tabbed-toc .loading {
    display: block;
    padding: 5px 15px;
    font: normal bold 11px Arial, Sans-Serif;
    color: #FFF;
}

#tabbed-toc ul,
#tabbed-toc ol,
#tabbed-toc li {
    margin: 0;
    padding: 0;
    list-style: none;
}

#tabbed-toc .toc-tabs {
    width: 24.8%;
    float: left !important;
}

#tabbed-toc .toc-tabs li a {
    display: block;
    font: normal bold 10px/28px Arial, Sans-Serif;
    height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #ccc;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 12px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
}

#tabbed-toc .toc-tabs li a:hover {
    background-color: #515050;
    color: #FFF;
}

#tabbed-toc .toc-tabs li a.active-tab {
    background-color: #FFFC03;
    color: #222;
    position: relative;
    z-index: 5;
    margin: 0 -2px 0 0;
}

#tabbed-toc .toc-content,
#tabbed-toc .divider-layer {
    width: 75%;
    float: right !important;
    background-color: #F5F5F5;
    border-left: 5px solid #FFFC03;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease-in-out;
}

#tabbed-toc .divider-layer {
    float: none;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

#tabbed-toc .panel {
    position: relative;
    z-index: 5;
    font: normal normal 10px Arial, Sans-Serif;
}

#tabbed-toc .panel li a {
    display: block;
    position: relative;
    font-weight: bold;
    font-size: 11px;
    color: #222;
    line-height: 2.8em;
    height: 30px;
    padding: 0 10px;
    text-decoration: none;
    outline: none;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
}

#tabbed-toc .panel li time {
    display: block;
    font-style: italic;
    font-weight: 400;
    font-size: 10px;
    color: #666;
    float: right;
}

#tabbed-toc .panel li .summary {
    display: block;
    padding: 10px 12px;
    font-style: italic;
    border-bottom: 4px solid #275827;
    overflow: hidden;
}

#tabbed-toc .panel li .summary img.thumbnail {
    float: left;
    display: block;
    margin: 0 8px 0 0;
    padding: 4px;
    width: 72px;
    height: 72px;
    border: 1px solid #dcdcdc;
    background-color: #fafafa;
}

#tabbed-toc .panel li:nth-child(even) {
    background-color: #DBDBDB;
    font-size: 10px;
}

#tabbed-toc .panel li a:hover,
#tabbed-toc .panel li a:focus,
#tabbed-toc .panel li a:hover time,
#tabbed-toc .panel li.bold a {
    background-color: #222;
    color: #FFF;
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
}

#tabbed-toc .panel li.bold a:hover,
#tabbed-toc .panel li.bold a:hover time {
    background-color: #222;
}

@media (max-width:700px) {
    #tabbed-toc {
        background-color: #fff;
        border: 0 solid #888;
    }
    #tabbed-toc .toc-tabs,
    #tabbed-toc .toc-content {
        overflow: hidden;
        width: auto;
        float: none !important;
        display: block;
    }
    #tabbed-toc .toc-tabs li {
        display: inline;
        float: left !important;
    }
    #tabbed-toc .toc-tabs li a,
    #tabbed-toc .toc-tabs li a.active-tab {
        background-color: #222;
        color: #ccc;
    }
    #tabbed-toc .toc-tabs li a.active-tab {
        color: #000;
    }
    #tabbed-toc .toc-content {
        border: none;
    }
    #tabbed-toc .divider-layer,
    #tabbed-toc .panel li time {
        display: none;
    }
}

</style>

Editing:-
1) To change the message which appears before the sitemap is loaded, change this "Loading, please wait for a moment..." line to your own.

2) Replace my blog URL with your blog URL by replacing https://www.twistblogg.com and those who are using the free blogspot domain name, change your country specific extension to .com at the end of the URL.

For example, change http://yourblog.blogspot.in to http://yourblog.blogspot.com where .in is a country specific TLDN for Indian users, got it?

3) Color scheme is yellow and you may like to change it to your blog's color scheme. To change the yellow color just replace this #FFFC03 color code to your own which appears two times in the CSS code above.

4)Also, you can host the script in your GitHub account. Learn how to host CSS, Javascripts and other files in GitHub.

Finally hit Publish button and visit your sitemap page to check if it is working or not. It should be 100% working for everyone.


Hide The Specific Labels And Show Selected Labels Only

What if you have a huge list of labels and you only want to show the selected labels on your sitemap page? This script automatically fetches all the labels and shows them all in the sitemap. We can't stop appearing unwanted labels or show the selected labels only with the script. It will generate and show all the labels of your blog in your sitemap.

Many of you guys may don't like to show all of your labels if they are above 100+ so in that case, I have a simple solution to hide the unwanted labels from appearing and show only the selected ones.

This is possible with simple CSS code so please read the steps carefully and be ready to follow a boring task. :)

Step 1. Selecting The Labels To Hide

First of all just visit your newly published sitemap page and let the sitemap load. You will see all the labels listed and sorted alphabetically on left side (if you did not change the settings from JavaScript).

Now start counting your labels. Yes you heard it right. :p

Because you need to note down the number of the label you want to hide. Usually counting starts from 1 but you have count from ZERO. It means your very first label is on number ZERO in the list and second label is on number one. Same goes on till the end.

Step 2. Add The Number of The Label To The Class Name

Finally if you have noted down all the numbers of labels you want to hide then now add the numbers to this class name .toc-tab-item-ADD-NUMBER and add those all the classes together just like the example code given below:-

<style>
.toc-tab-item-0, .toc-tab-item-1, .toc-tab-item-5, .toc-tab-item-7 {
  display: none !important;
}
</style>

In the above CSS code, I have selected the label number 1, 2, 4 and 6 to hide (Remember to count from ZERO=1). Use the above code as a reference and add all of the numbers of the labels like as I did in the example code above. Ask me in comments if  you did not get it.

After adding all those classes, go back to edit the sitemap page then just add this CSS code inside your sitemap page like as you have added the previous codes. Now update your page and see the results if they are as expected or not.

Finally this is all I could do in this tut and I hope it is simple enough to understand for newbies too.
If you're facing any kind of problem or need any help regarding further customization of your sitemap page then just leave your message in the comments or shoot me an email. Your feedback is much appreciated.

I'll definitely get back to support you. Support me by sharing this post and socializing with me. :) Stay Blessed!

Share this post

Explore more articles by Satbir

54 comments

Please leave comments related to the content. All comments are highly moderated and visible upon approval.

Comment Shortcodes

  • To insert an image, add [img]image_link[/img]
  • To insert a block of code, add [pre]parsed_code[/pre]
  • To insert a link, add [link=your_link]link_text[/link]
  • To insert a quote, add [quote]quote_text[/quote]
  • To insert a code, add [code]parsed_code[/code]
  1. how to display all blog posts? somehow it is not getting all the posts
  2. it does not work on my blog sir, how can i do that?
  3. Wonderful post, I was so desperate to put sitemap page on my idioms blog. I hope this should work on my site too.
  4. Not working on my blog. Just showing Loading line. Can you help?
  5. How can i hide come labels from sitemap. You have mentioned above i am not understanding to how to hide. please help me in explained
  6. Thank you. Worked well
    1. You're most welcome.
  7. Thanks a lot!
    1. You're welcome bro. Do share the blog.
  8. thanks, it help's a lot. inboracay
  9. This sitemap cannot load all of my posts, I knowing it after my old posts cannot show, so i perform renewal each the date of my post and the post possible to show with status new, but another post become old and then disappear slowly and so on.
  10. thanks
  11. Its Cool !. You did a good job. I applied it on my Blog :
    www.techcarepoint.blogspot.com

    Thank You so much Brother.
  12. It is working perfectly and so elegant on www.ityunit.com .

    Check out the new elegant ityunit sitemap. It loads fast too
  13. Nice tutorial. I have done. Thanks for your excellent tips.
  14. Some months before I added this awesome Sitemap widget to my blogger blog and it was working perfectly.

    But now, Its not working. No changes to codes from my side.
  15. not working anymore, due to the javascript that can't be loaded from google drive anymore . please update the code.
  16. Yes i done and its working check it
    http://www.digitalstuff.in/2016/09/create-blogger-html-sitemap-page.html
  17. Everything goes well but only problem i faced is the code is not showing all the labels i have. It only shows some of the labels.
  18. I want to change the black background to white and the text to black. As it is, a tad hard on older eyes. (grin) Where would I change it without messing it up, please?
  19. dont work on my blogspot
  20. Awesome!!!
    I am using in my website.
    http://www.asparticles.com/p/sitemap.html
  21. thnk you sir,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
  22. Beautifull, thank you broh..

    please come visit my sitemap
    http://www.software-gratis.net/p/sitemap.html
  23. This is so perfect and really works on my new blog. www.netishout.com
  24. hey there, great code. but i'am having a slight problem. well only "loading" is shown in my page. Pls help me out my blog is www.craftopediasss.blogspot.in
  25. woow its beautiful page, look its work in Dental Sitemap
  26. It doesen't show anything on my site,just Loading, please wait for a moment this is the 3d code i try for blogger sitemap...
    http://www.createmusicyourself.com/p/p.html
  27. nice work bro. every pnae said we have we have nut no one have real thing.nut you provide.its amazing.keep it up
  28. Hello Satbir!I implement your awesome sitemap to my blog but it doesn't show all posts on labels.in many labels are missing many of my posts.I've tried with different sitemaps and i have the same problem.I though that its not a problem in your script but it has to do with something in my settings.I would appreciate any help you could give me!!!Thanks in advance!!
    1. same problem here. every script I've tried has the same problem. Shows all my labels beautifully but not nearly all the posts under each label, just maybe up to 6 at most and that's it. Thoughts?
  29. After visiting your blog I was compelled to subscribe to you.
  30. bro....am having issues with this.....
    see here http://www.taseupdates.com/p/sitemap_19.html
  31. once again, thanks! I have a working sitemap. thanks to you. www.millerszone.com
  32. hello bro help me for sitelink add blogger
  33. Thank You So Much Sir SATBIR PATIAL.. and i try to change the color.. so look great for me.. :)
  34. how to resize the width? i want to make it bigger and larger to fit inside the page like yours. Thanks if you response sir
    1. MJ Marcos :: Its width is already set to 100% so I did not get you. What do you exactly want? It could be better for me to understand if you share your blog URL on which you applied this sitemap code!
      Regards!
  35. Working perfectly on my blog. Great widget. Thank you very much for sharing it with us.
    1. Rigon Berisha :: You are more than welcome buddy :)
  36. thank you bro today i am using your code thanks for share
    1. Tariq Aziz :: You're welcome buddy :-)
  37. Thanks, It worked great. I tried the code from many websites which had similar directions of copying the code in HTML page and replacing it with yourblogdomain. However, none of them worked on my blogger account. This one worked in first instance. It has very nice looks.

    Thanks again.
    selenekendra
  38. hello admin :)
    now its working i m so happy becz it dont show in preview mode so now i update it then its working well
    thanks again for sharing such nice article :)
    1. Latest Picture SMS:: More that happy for you buddy.. :-)
  39. hello admin
    don't working on my blog???
    i have added all above code and do as you said in this post but unable to load :(
    do somethinf if you have time then
    thanks :)
  40. Bro, thank you for everything. It worked great on my blog!
    1. Weird Stories:: More than welcome buddy ;-)
  41. WOW!!! Once more, you've been very helpful Satbir! Thank you so much! I played with the color codes to much my blog and it's amazing!
    Greetings from Greece!

    Eva
    .•*¨`*•✿.Jajala Majala.✿•*¨`*•.
    1. Eva:: You did a great job specially the pop count part is awesome :)
      Glad to know that I could help you :)
      Thanks for leaving your lovely comment..!!
  42. Will new labels will automatically be added
    1. Danish:: Of-course buddy. Every new label will automatically be added. Fresh Sitemap loads at the time user visits the page and every label you have used at that point of time will be added.
  43. Hi Satbir,

    My blog doesn't have a sitemap. Reading this post, I want to make one as soon as possible. I tried to create a landing page using your previous tutorial and I am delighted to let you know that it worked so well. I was able to hide the sidebar as you suggested. :)

    Coming to this post, again I must say the explanation was very understandable. I will definitely try implementing this tutorial too.

    Thanks for sharing.
    ~ Rohan.
    1. Hello Rohan :)
      Sitemap page on your blog will surely make a difference. I am so happy to know that my tutorials are helpful for you and I would love to see your landing page. :)

      If you ever need my help then I am always there Buddy..!!
      Thank you so much for liking, commenting and sharing this post. After 20 of this month, I would be working on my blog normally as before. Missing everything..!!
Post a Comment