How to add Table of Contents in Blogger 2022

How to add Table of Contents in Blogger 2022

Table of contents Intro?

The opening section of a post or article is typically preceded with a Table of Contents, which is a brief section of text in a tabular format. It provides a table of all of the headings and subheadings for your posts or articles.

What benefits come from adopting Table of Contents?

As you are aware, the TOC shows immediately following the first paragraph of your postings. The top few sentences of your entire post can be taken up by your viewers. Therefore, a carefully thought-out Table of Content may work in favour of your page in:
  • Giving your post or article a professional appearance.
  • Systematically grouping the ideas in your post or article.
  • Managing the expectations of your viewers, as they give a broad overview of your posts or articles.
  • Giving your visitors a road map so they can quickly read your entire topic or article.

How may a table of contents be added in Blogger?

For this process you have to follow the below wrtten useful steps which will help you to ease your process of adding TOC in any page of your blog.
1. Sign in to Blogger profile in which you have to Add TOC.

2. On the left side of your blogger Dashboard Click on "Theme" and then select "Edit HTML."

3. Next, Use Control F and Locate </head> element in your Template and Paste the below written Code before </head> tag.
<script type='text/javascript'> //<![CDATA[ //*************TOC plugin 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>

4. Just Like Above Search ]]></b:skin> and paste the following CSS code Before ]]></b:skin>.
.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}
5. In the fifth Step Search <data:post.body/> , Replace it with the code written below.
<div id="post-toc"><data:post.body/></div>
6. Finally you are done with it, Click on "SAVE" and enjoy.
Read More

How To Fix Breadcrumbs Error (data-vocabulary.org schema deprecated) In Blogger Themes In 2022

How To Fix Breadcrumbs Error (data-vocabulary.org schema deprecated) In Blogger Themes In 2022
For markup-based applications on the Web, structured data schemas like those from data-vocabulary.org and schema.org are used to establish shared, meaningful structures. We made the decision to concentrate our development efforts on a single SD scheme due to the growing usage and popularity of schema.org. To confirm whether you're facing this issue, go to Search console and you should be getting a warning.

Solve data-vocabulary.org schema deprecated issue

Step 1: Go to Blogger.com and search for
<b:includable id='breadcrumb' var='posts'> 
. Step 2: Paste the below written code in place of
<b:includable id='breadcrumb' var='posts'>… </b:includable>
. CODE
<b:includable id='breadcrumb' var='posts'>
<b:if cond='data:view.isSingleItem'>
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.labels'>
<div class='breadcrumbs' itemscope='itemscope' itemtype='https://schema.org/BreadcrumbList'>
<svg class='homesvg' viewBox='0 0 24 24'><path d='M12,3L20,9V21H15V14H9V21H4V9L12,3Z'/></svg>
<span itemprop='itemListElement' itemscope='itemscope' itemtype='https://schema.org/ListItem'>
<a class='breadhome' expr:href='data:blog.homepageUrl' itemprop='item' title='Home'>
<span itemprop='name'>Home</span></a>
<meta content='1' itemprop='position'/>
</span>
<svg viewBox='0 0 24 24'><path d='M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z'/></svg>
<b:loop index='num' values='data:post.labels' var='label'>
<span itemprop='itemListElement' itemscope='itemscope' itemtype='https://schema.org/ListItem'>
<a expr:href='data:label.url + &quot;?&amp;max-results=10&quot;' expr:title='data:label.name' itemprop='item'>
<span itemprop='name'><data:label.name/></span>
</a>
<meta expr:content='data:num+2' itemprop='position'/>
</span>
<svg viewBox='0 0 24 24'><path d='M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z'/></svg>
</b:loop>
<span><data:post.title/></span>
</div>
</b:if>
</b:loop>
</b:if>
</b:includable>
Step 3: The new breadcrumb will now be styled. Insert the CSS code you will see below into your blog theme template. Then click Save.
/* CSS Breadcrumbs By TwistBlogg.com*/
.breadcrumbs{line- height:1.2em;width:auto;overflow:hidden;padding:0;margin:0 auto 20px;font-size:90%;color:#888;font-weight:400;text-overflow:ellipsis;-webkit-text-overflow:ellipsis;white-space:nowrap}
.breadcrumbs a{display:inline-block;text-decoration:none;transition:all .3s ease-in-out;color:#777;font-weight:400}
.breadcrumbs a:hover{color:blue}
.breadcrumbs svg{width:20px;height:20px;vertical-align:-5px;margin:0 -3px}
.breadcrumbs svg.homesvg{width:22px;height:22px;margin-right:0}
.breadcrumbs svg path{fill:#c8c8c8}
.breadcrumbs svg.homesvg path{fill:#999}
Read More

What to do if google adsense account been suspended for 30 days

What to do if google adsense account been suspended for 30 days

You Don't have to Worry about this Suspension as there are thousands or more than that which are experiencing the same issue. There are certain rules which an Adsense user has to follow, some know it early and some know after they face such kind of problem. All over the world, there is a huge population which are busy in making money online. This is one of the best option, but need to have a wide knowledge before starting. I will Share my experience of how i started my adsence, it all started many years ago when i submitted my application request for adsense. On my couple of tries, i got rejected but i was doing the same changes in my blog which they were sending me in rejection mail. Finally in the third Try i got approval.

I had a wide knowledge regarding rules and regulation of Adsense account and i never got suspension in my life. In this topic i will be writing some of the important factors which are the main reason for the Suspension of Adsense Account. Please note these properly and follow these for not being rejected by the Adsense Platform. Below Have Written some of the factors which are the main reason for your Adsense Suspension:
  • Due to Invalid Click Activity
  • If Traffic on Your Blog or Site is Coming from bad backlinks.
  • If You Have Copied Some One's Content and He has Claimed
  • If there is Problem With your Ad Code.
  • Make Sure your Traffic is Organic.


These are some and there are lot of other rules which you have to follow for being a successful adsence account holder. The problem is that Google will never tell you anything regarding your Suspension. They will only suspend you And then you have to guess what wrong you have done for which you have been suspended. Below i will define the above points so that you may understand properly what they actually mean.

Account Suspended Due to Invalid Click Activity

Invalid clicks means when you click on you Ads three times in a Month. They give you 30 days to correct it otherwise you may be banned for life. Never click on your ads by yourself or never click on ads from one devices three times in a week. Some thought that they will click form one IP address so many times, but they are making huge mistake as Google is always watching your Click Activity.

Traffic Coming from Bad Backlinks

This is another reason of the suspension, as it is against the rules of the google platform. Bad Backlink are those sources which are coming from unrelated and untrusted sources. These sources are mostly against the webmasters rules and are considered to be illegal.

If You Have Copied Some One's Content and He has Claimed

I will suggest my users, never copy any content from any one's website or blog. It is considered as duplicate and if he will claim for this, your account may be permanently suspended for life. It have experienced this by myself when my friends website which was earning about $7300 dollars Per Month.

The problem in this matter is that google will never share the reason behind the suspension. They will only suspend the account without sharing the reason. So, if you have to remain with the adsense account you have to follow the various rules and regulations framed for the Adsense users. If your Account is Continuously Suspended or Permanently Suspended, you may apply again from another email.

Adsense Account Disabled How to Enable

At the first time when i Applied for Adsense i got rejected because i had some mistakes in my blog. But i was doing the same changes in my blog which they were sending me in rejection mail. Finally in the third Try i got approval. Here you have to do the same for again making your account active. I will post some of the points below with the help of which you can reactivate your account. Follow the below written points for getting Successful.
  • Make Changes In your Website or blog for which your account was suspended.
  • Review the top reasons on which your Account was Suspended.
  • Review the ad implementations.


After that you have to Submit appeal form through the Below link:

Appeal Form Link

But note that you have to Submit this form through your registered Adsense Account Email Id.
Read More

You don't Need a Payment Method Until Your Earnings Threshold Has Been Reached

You don't Need a Payment Method Until Your Earnings Threshold Has Been Reached

This Message is usually faced by many of the Adsense users and there is no need to worry regarding this message. I will tell you why, The payment threshold for different countries is different. Below i have pasted a chart in which you will find different threshold details. Remember this can change at any period of time but this time the details are as written in the chart. In the initial stage every one among us is excited to receive the payments as early as possible. But some of us know the rules and regulations of getting paid. Many of us thought we will never get paid when they are hit by any hindrances such as verifying Adsense account through OTP send on your registered address.

But i will tell my friends that, they need not to worry as these are very minor thing that will easily get in your favor when you know how to deal with them. Every problem has a solution and one should not give up early. If my friends are facing any problem regarding Adsense, i am always here for their help. Comment below if you are facing any issue and i will help you accordingly.


You will be paid when your payment which is on hold will reach your country's threshold limit. The above chart will help you know what is the threshold amount for adsense. I have gathered this information so that you will get informed related to threshold Limit.

Now the question is:

Can i Change Payment Schedule or threshold?

The answer is yes, In the payment setting of Your Adsense you can change the payment threshold to any amount. After that you have to save the settings and it will get applied for your account.

After this setting, you can move upto the Form of payment, which means the type through which you want to get paid. There are different methods of getting paid and one among them is EFT Transfer.

Read More