Advertisements

How to add Table of content (Snippet) code in blogger – All about blogging

How to add Table of content (Snippet) code in Blogger: All about blogging

how to add table of content in blogger


The table of contents is like the index in the textbook. Titles, Headlines, Page numbers, etc. As well, blog posts also help users understand what type of content to include in their blog posts if your content is huge and difficult to find exactly. We, bloggers, know that there is no extra plugin like on WordPress websites to implement our blogs; we just have to code and modify our blogs.

If your post has more than six headlines, then you can make it more user-friendly. This table of content – snippet process also boosts SEO. When users click on the headline the page scrolls to the headline target so that they can read directly what they intended or wanted to know. So, Google also recommended this. So, Let’s begin your post more effectively.

The process of adding a table of contents is like coding. So I recommend or warn you to backup before doing it and don’t worry it is a one-time process. And please subscribe to this blog if you are interested in related topics and blogging.

  • Open your blog dashboard, to which site you want to add a table of content. 
  • Go to the theme section and select Edit HTML
  • In the search box type closing head tag – </head> by typing CTRL+F
  • Copy the below code and paste it exactly above </head>
<link href='http://fortawesome.github.io/Font-Awesome/assets/font-awesome/css/font-awesome.css' rel='stylesheet'/>           

<link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'/>


<script type='text/javascript'>              

//<![CDATA[                      

function mbtTOC() {var mbtTOC=i=headlength=gethead=0;           
headlength = document.getElementById("post-toc").getElementsByTagName("h2").length;for (i = 0; i < headlength; i++)           

{gethead = document.getElementById("post-toc").getElementsByTagName("h2")[i].textContent;document.getElementById("post-toc").getElementsByTagName("h2")[i].setAttribute("id", "point"+i);mbtTOC = "<li><a href='#point"+i+"'>"+gethead+"</a></li>";document.getElementById("mbtTOC").innerHTML += mbtTOC;}}function mbtToggle() {var mbt = document.getElementById('mbtTOC');if (mbt .style.display === 'none') {mbt .style.display = 'block';} else {mbt .style.display = 'none';}}           
//]]>              
</script> 
  • Follow the image below and paste it carefully above the closing head tag.
How to add Table of content (Snippet) code in blogger - All about blogging
  •  Now, find again this code ]]></b:skin> and paste the following code below. 
.mbtTOC{border:5px solid #f7f0b8;box-shadow:1px 1px 0 #EDE396;background-color:#FFFFE0;color:#707037;line-height:1.4em;margin:30px auto;padding:20px 30px 20px 10px; font-family:oswald, arial;display: block;width: 70%;}           
.mbtTOC ol,.mbtTOC ul {margin:0;padding:0;}           
.mbtTOC ul {list-style:none;}           
.mbtTOC ol li,.mbtTOC ul li {padding:15px 0 0; margin:0 0 0 30px;font-size:15px;}           
.mbtTOC a{color:#0080ff;text-decoration:none;}           
.mbtTOC a:hover{text-decoration:underline; }

        
.mbtTOC button{background:#FFFFE0; font-family:oswald, arial; font-size:20px;position:relative; outline:none;cursor:pointer; border:none; color:#707037;padding:0 0 0 15px;}           

.mbtTOC button:after{content: "f0dc"; font-family:FontAwesome; position:relative; left:10px; font-size:20px;} 
How to add Table of content (Snippet) code in blogger - All about blogging
  • The last step in coding is just to replace the code below as shown in the image
How to add Table of content (Snippet) code in blogger - All about blogging
<data:post.body/>
Note: If you have more than one this code, then replace all <data:post.body/> so replace all by this code below.
<div id="post-toc"><data:post.body/></div> 

That’s alright, Now the coding in the HTML template is completed. All you have to do is keep two small codes that you have entered in every post that you want to show the table of contents in your blog post. So that you need to open already published posts or a new post. We ensure that these two codes remain after completing an article and that the article should have more headlines.

  • Now go to the posts list and select one on which you desire to enable the table of content
  • Edit in HTML 
How to add Table of content (Snippet) code in blogger - All about blogging
  • Find your first heading
  • Then paste the below code in between <br> tags, exactly above on the first heading line.
Table of content in blogger
<div class="mbtTOC"> 
    <button onclick="mbtToggle()">Table Of Contents</button> 
    <ul id="mbtTOC"></ul> 

    </div>
  • Now the final step is adding a piece of code exactly above </div> closing division tag.
  • The final code is below the image.
Table of content in blogger

<script>mbtTOC();</script>


NOTE: 

  •     Change the snippet background color #FFFFEO

  •     Change the snippet border-color #f7f0b8

  •     Change the snippet font color #707037

  •     Change the snippet Anchor link color #0080FF

  •     Change the table of the content font size of anchor Links to 15px

  •     Change the snippet font size of the TOC heading text to 20px

Now, comment below whether it helps you and executes the code. Please let me know.

Spread The Knowledge

Leave a Comment