2020-05-11

How to add a Table of Content in Blogger



    In this blog post, I am going to show how you can add a Table of Content in your blogger blog post. As you know, Blogger does not support Plugins like WordPress does, However, if you have little tech knowledge you can easily create a custom-designed lightweight toc for your blog.

    So I this post I will show step by step method to make TOC for your blog post and pages.

    But before we get started, Let’s discuss some benefits for having a TOC in your blog post.

    SEO Benefits of TOC

    As you know Google loves the very detailed and well-structured blog posts and web pages. And by adding toc in your blog post you can make your blog post more structured.
    And If your blog post will be well structured then google can display Jump to links in the meta description in Search Result Page.
    Which is a huge SEO benefit!
    Now, Here is an example of Google Jump to links.
    Google Jump Link

    Improved User Experience

    User experience is another very important part of a blog which lots of Blogger don’t take seriously. But here is the game,
    according to a study user experience is the key to get higher ranking in SERP.
    And a Table of Content will going to help you, improve the user experience of your website.
    According to a research by NN Group, more than 79% of total web readers are scanners who only read the important points of a webpage.

    And adding a TOC will allow your readers to jump to the important part of a blog post. Which can be a breakthrough for user experience of your website.

    Now, lets first discuss how you can automatically add a table of contents in google blogger posts.

    Here is How to Automatically Create Table of Contents in Blogger

    I am going to divide the workflow of making a TOC into 5 easy steps so it will become super easy for you to implement.

    Step 1: Now, the first thing you need to do is log in to your Blogger dashboard and then go to the Theme editor.
    And click on the Edit Html button.
    Blogger Dashboard >> Theme >> Edit Html 
    It will bring you lots of codes on your screen.
    Here, you have to paste the codes given below
    Just above the close heading tag </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[
    //*************TOC plugin by MyBloggerTricks.com
    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>
    Step 2: In this step, we are going to style our table of content.
    To do that you need to paste these CSS codes
    Find the ]]></b:skin> in your screen and paste the CSS codes just above the ]]></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;
    }
    Step 3: Here you just have to tweak a line or two of code in the blogger theme. Search for the code <data:post.body/>  and replace it with the code given below.
    If you find more than one <data:post.body/> then replace all with the codes given below.
    <div id="post-toc"><data:post.body/></div>
    Step 4: Now, In this step, we are going to activate the TOC in our blog posts.
    It is quite simple and easy to do.
    The first thing you need to do is paste the Html code given below in the blog post, where you want to show the table of content.
    I will recommend you to paste the code after the first paragraph of your blog post.
    <div class="mbtTOC"> 
    <button onclick="mbtToggle()">Contents</button>
    <ol id="mbtTOC"></ol>
    </div>
    Step 5: And this is the last step here, you need to paste this JS code at the very bottom of the blog post or page where you want to display the table of content.
    <script>mbtTOC();</script>
    That’s it you are done!
    You have successfully created an automated toc for your blog post.
    Note:- This project has developed by sayemtutorial.blogspot.com so big shout out for them.
    But keep in mind that this table of content has only made with XML and Javascript codes, so it can make your blog too heavy to load.
    And it is also not stylish to look at… 
    But don’t worry, I will help you to create easy to load and stylish TOC with only HTML and CSS.

    How to add a Table of Content in Blogger with HTML and CSS

    It can be an easy task to create Toc in Html and CSS for a web developer but it can not be an easy task for a non-techy person.
    But here, I will you show you step by step method which will be comfortable for both techy and non-techy person.
    Here is the deal
    Step 1:- In this step, you have to copy all the CSS codes given below and paste it into the root of your blogger theme.
    .mb-toc {
    border: 2px solid #ddd;
    background: #ececec;
    padding: 5px 20px 20px;
    margin: 40px 0;
    font-size: 18px;
    overflow: hidden;
    border-radius: 5px;
    }

    .mb-toc h2 {
    margin: 10px 20px;
    font-size: 30px;
    }

    .mb-toc ul {
    margin: 0;
    list-style: none;
    float: left;
    width: 100%;
    }

    .mb-toc ul ul li a {
    padding-left: 45px;
    }

    .mb-toc ul ul li {
    background: none;
    }

    .mb-toc li {
    list-style-type: none;
    position: relative;
    margin: 0;
    cursor: pointer;
    background: #f7f7f7;
    float: left;
    width: 100%;
    }

    .mb-toc li:nth-child(odd) {
    background: #fff !important;
    overflow: hidden;
    clear: both;
    }

    .mb-toc li:nth-child(odd) li:nth-child(odd) {
    background: none;
    }

    .mb-toc li:nth-child(even) {
    background: #f7f7f7 !important;
    overflow: hidden;
    clear: both;
    }

    .mb-toc li:nth-child(even) li:nth-child(odd) {
    background: none;
    }

    .mb-toc ul>li:hover>a {
    background: #fffcd1;
    }

    .mb-toc li a {
    color: inherit;
    padding: 8px 0 8px 25px;
    float: left;
    border-bottom: 1px solid #ddd;
    width: 100%;
    text-decoration: none;
    }
    Step 2:- To paste the CSS codes, open the dashboard of your blogger blog then go to Layout and then Theme Designer…
    Dashboard >> Layout >> Theme Designer
    And then in theme designer click to Advanced and go to Add CSS
    Advanced >> Add CSS
    Now paste all the CSS codes here

    Step 3:- In this step, you have to paste the HTML codes given below to your blog pages and posts. You need to paste this code in your blog post and page every time you want to display a Table of Content.
    <div id="toc" class="mb-toc">
    <h2>Table Of Contents</h2>
    <ul>
    <li><a href="#headingid1">1. Your heading text </a></li>
    <li><a href="#headingid2">2. Your heading text</a></li>
    <li><a href="#headingid3">3. Your heading text</a></li>
    <li><a href="#headingid4">4. Your heading text</a></li>
    <li><a href="#headingid5">5. Your heading text</a></li>
    </ul>
    </div>
    Step 4:- Now you have to add a unique Id to your heading tags in your blog post.
    Step 5:-  After adding the unique id to your heading tags replace the Id in Html codes and change the anchor text.
    Boom!
    You have successfully created a stylish looking and easy to load the table of contents for your blog.

    Conclusion:- Ahha You are done, You have created a good looking and SEO friendly table of contents for your blogger blog post and pages.
    This custom-designed TOC will help you to attract the user’s attention.
    However, do let me know if you are having any problems?

    2020-05-10

    How To Setup Safelink ST Rsponsive Blogger Template



    1. Fast Install This Template.

    2. How To Edit Header Line


    3. Header Line
      <div class='clear'/>
      <section class='hero' id='hero1'>
      <div class='inner1'>
      <div class='copyv'>
      <h3>Sayem Tutorial Safelink</h3>
      <div id='mariber-social'>
      <ul>
      <li class='fb-item'>
      <a href='#' rel='nofollow noopener' target='_blank' title='Follow Us on Facebook'><i class='fa fa-facebook fa-fw'/><span class='inv'/></a>
      </li>
      <li class='twitter-item'>
      <a href='#' rel='nofollow noopener' target='_blank' title='Follow Us on Twitter'><i class='fa fa-twitter fa-fw'/><span class='inv'/></a>
      </li>
      <li class='instagram-item'>
      <a href='#' rel='nofollow noopener' target='_blank' title='Follow Us on Instagram'><i class='fa fa-instagram fa-fw'/><span class='inv'/></a>
      </li>
      </ul>
      </div>
      </div>
      </div>
      </section>

      • How To Edit Footer Line
      Footer Line
        <section class='hero' id='hero2'>
        <div class='inner2'>
        <div class='copyz'>
        <h3>About</h3>
        <div id='mariber-about'>
        <p>Safelink ST is a URL shortening service that can be monetized and the publisher gets rewards from advertising</p>
        </div>
        </div>
        </div>
        </section>
        <div class='clear'/>
        <footer class='site-footerindz' id='downinseo' itemscope='itemscope' itemtype='https://schema.org/WPFooter' role='contentinfo'>
        <div class='site-infoku' role='contentinfo'>
        Copyright &#169; <script type='text/javascript'>var creditsyear = new Date();document.write(creditsyear.getFullYear());</script> <a expr:href='data:blog.homepageUrl'><data:blog.title/></a> All Right Reserved - Powered by Blogger
        </div>
        </footer>

        • How To Write Post

        Timer
        Get In Button
        Add This Code
        <div id="timer">
        </div>
        <div class="text-center">
        <button class="btn bt-success hidden" disabled="" id="getlink">Get Link</button>
        <!-- Template By Sayem Tutorial -->
        </div>
        On The Post Where You Add This Timer & Button.
        --------
        Add This Code

        <div class="text-center">
        <button class="btn bt-success hidden" disabled="" id="gotolink">Go to Link</button>
        <br />
        <div style="display: inline-block; margin: auto;">
        <!-- Template By Sayem Tutorial -->
        </div>
        On The End Of Post
        ---------------------------
        Demo About How To Write Post
        Demo

        How to setup Xmlthemes Responsive Blogger Template

        How to Settings As below

        First enter the settings menu> Posts, comments and sharing> Show at most? , fill in 0

        Make a post on the page

        OK DEMO POST

        <div class="item-main">
        <img alt="XML Kompaz - Template Blogger Mirip Kompas" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgGIBQ6GcsmyMdvWhDPrMjbcd1Y2OLVVt1wdRpdHDbrCoItKmJfglleTQhiWlGhseNQpAjpUY6fBm3mwvTj12c96DhC8NJ_-XzSBgjWj2eHOkS7x7LAFYFq1BxGRQUgMXXXwMoVTFjOSo2B/s1600/xml_kompaz_template_blogger_mirip_kompas.jpg" /><br />
        <br />
        <b>Kompaz</b> adalah template blogger mirip situs berita terkenal Kompas.com. Kompas.com berada pada urutan ke-7 situs yang paling banyak dikunjungi di Indonesia di bawah Okezone.com, Google.com, <a class="external text" href="https://tribunnexs.xmlthemes.com/" rel="external">Tribunnews.com</a>, Youtube.com, <a class="external text" href="https://detikweb.xmlthemes.com/" rel="external">Detik.com</a> dan <a class="external text" href="https://liputan9.xmlthemes.com/" rel="external">Liputan6.com</a>. <br />
        <br />
        Didasari itulah kami menganggap bahwa tampilan Kompas.com cukup baik karena masuk 10 besar situs populer Indonesia. Tampilan baru Kompas.com ini cukup fresh dan clean dibandingkan tampilan lama yang didominasi warna biru dan orange. <br />
        <br />
        <h2>
        Kompaz - Template Blogger Mirip Kompas</h2>
        <br />
        <ul>
        <li>Perfectly Structured Data - <a class="external text" href="https://developers.google.com/structured-data/testing-tool/?url=https://kompaz.xmlthemes.com/" rel="external">Check</a></li>
        <li>Mobile Friendly Design - <a class="external text" href="https://www.google.com/webmasters/tools/mobile-friendly/?url=https://kompaz.xmlthemes.com/" rel="external">Check</a></li>
        <li>PageSpeed Score A (89%) - <a class="external text" href="https://gtmetrix.com/reports/kompaz.xmlthemes.com/Jw6RFVJK" rel="external">Check</a></li>
        <li>SEO A (90%)</li>
        <li>Responsive Design</li>
        <li>SEO Optimized</li>
        <li>Latest News Running Text<span class="new"></span></li>
        <li>Special Page for Popular News<span class="new"></span> - <a class="external text" href="https://detikweb.xmlthemes.com/p/terpopuler.html" rel="external">Check</a></li>
        <li>Google AdSense Ready</li>
        <li>Sticky Navbar &amp; Sidebar</li>
        <li>Theme-color Status Bar (mobile)</li>
        <li>Auto Resize Thumbnail Image</li>
        <li>Facebook Comments</li>
        <li>Social Media Icons in Footer</li>
        <li>Compatible with IE8+, Mozilla, Chrome, Safari</li>
        <li>All Completely Automatic...</li>
        </ul>
        <br />
        <h3>
        Tata Letak Kompaz</h3>
        <br />
        Untuk mempelajari layout halaman utama, Anda dapat melihat gambar ini, <a class="external text" href="https://files.xmlthemes.com/images/kompaz-layout.jpg" rel="external">klik di sini</a><br />
        <br />
        <ol>
        <li><b>Header</b><br />
        <ul>
        <li>A. Logo. Anda dapat mengupload logo website di sini</li>
        <li>B. Search Box. Kotak pencarian (otomatis tanpa setingan)</li>
        <li>C. Day &amp; Date. Tampilan waktu saat ini (otomatis tanpa setingan)</li>
        <li>D. Direct Button. Ini adalah tombol Indeks untuk melihat semua postingan dan Populer untuk melihat semua postingan populer (otomatis tanpa setingan)</li>
        <li>E. Explore Button. Semua label yang ada dalam blog akan tampil di sini (otomatis tanpa setingan)</li>
        <li>F. Top Navigation. Ini adalah widget label otomatis. Anda dapat memilih label apa saja yang ingin ditampilkan di menu ini</li>
        </ul>
        </li>
        <li><b>Top Ads</b>. Anda dapat memasukkan script iklan di sini. Disarankan ukuran 970x90 atau horizontal lainnya</li>
        </ol>
        </div>
        <br />
        <li><b>Headline</b>. Ini adalah postingan paling baru yang otomatis tampil tanpa setingan. Pada tampilan seluler, widget ini bisa digeser dengan sentuhan jari (otomatis tanpa setingan)</li>
        <li><b>Sidebar Ads1</b>. Anda dapat memasukkan script iklan di sini. Disarankan ukuran 300x250 atau 300x600</li>
        <li><b>Sorotan</b>. Ini adalah 3 (tiga) postingan teratas populer minggu ini (otomatis tanpa setingan). Jika postingan menggunakan embed youtube, maka akan tampil icon Play video di widget ini</li>
        <li><b>Terpopuler</b>. Ini adalah 5 (lima) postingan populer minggu ini lanjutan dari widget <b>Sorotan</b>. Jadi ini adalah postingan populer dengan urutan ke-4,5,6,7 dan 8 (otomatis tanpa setingan). Jika postingan menggunakan embed youtube, maka akan tampil icon Play video di widget ini</li>
        <li><b>Terkini</b>. Ini adalah 5 (lima) postingan terbaru lanjutan dari widget <b>Headline</b>. Jadi ini adalah postingan baru dengan urutan ke-2,3,4,5 dan 6</li>
        <li><b>Sidebar Ads2</b>. Anda dapat memasukkan script iklan di sini. Disarankan ukuran 300x250</li>
        <li><b>Widget Label</b>. Ini adalah 4 (empat) postingan terbaru menurut label yang ingin ditampilkan. Widget ini disertai dengan script total posts menurut label tersebut. Contoh pada gambar, ada 6 (enam) postingan dengan label <b>Foto</b></li>
        <li><b>Widget Label</b>. Ini adalah 3 (tiga) postingan terbaru menurut label yang ingin ditampilkan</li>
        <li><b>Widget Label</b>. Ini adalah 4 (empat) postingan terbaru menurut label yang ingin ditampilkan. Disarankan menampilkan label <b>Video</b> karena di widget ini sudah otomatis ada tulisan PLAY</li>
        <li><b>Center Ads</b>. Anda dapat memasukkan script iklan di sini. Disarankan ukuran 970x90 atau horizontal lainnya</li>
        <li><b>Terkini Lainnya</b>. Ini adalah 10 (sepuluh) postingan terbaru lanjutan dari widget <b>Terkini</b>. Jadi ini adalah postingan baru dengan urutan ke-7,8,9,10,11,12,13,14,15 dan 16</li>
        <li><b>Sidebar Ads3</b>. Anda dapat memasukkan script iklan di sini. Disarankan ukuran 300x250</li>
        <li><b>Widget Label</b>. Ini adalah 3 (tiga) postingan terbaru menurut label yang ingin ditampilkan</li>
        <li><b>Sidebar Ads4</b>. Anda dapat memasukkan script iklan di sini. Disarankan ukuran 300x250</li>
        <li><b>Link Label</b>. Ini adalah widget label otomatis. Anda dapat memilih label apa saja yang ingin ditampilkan</li>
        <li><b>Social Media</b>. Anda dapat menambahkan link media sosial di sini</li>
        <li><b>About Us</b>. Anda dapat menambahkan link about us di sini</li>
        <br />
        <div class="fixed-item-sidebar">
        <div class="item-sidebar">
        <div class="license">
        Regular License <span class="price">Rp297.000</span><br />
        <br />
        <ul>
        <li>Quality checked by XMLThemes</li>
        <li>Well Documented</li>
        <li>Only for 1 domain (TLD)</li>
        </ul>
        <br />
        Premium Version <span class="price">Rp597.000</span><br />
        <br />
        <ul>
        <li>Quality checked by XMLThemes</li>
        <li>Well Documented</li>
        <li>Only for 1 domain (TLD)</li>
        <li>Future updates</li>
        <li>Free Installation &amp; Request*</li>
        </ul>
        <br />
        Developer Version <span class="price">Rp3.997.000</span><br />
        <br />
        <ul></ul>
        <div class="demo-buy">
        <span class="demo"><a class="external text" href="https://kompaz.xmlthemes.com/" rel="external">Live Preview</a></span><span class="buy"><a href="https://www.xmlthemes.com/p/contact.html">Buy Now</a></span></div>
        </div>
        <br />
        <ul class="detail">
        <li><span class="left">Update</span> 2 Februari 2020</li>
        <li><span class="left">Created</span> 1 November 2019</li>
        <li><span class="left">High Resolution</span> Yes</li>
        <li><span class="left">XML Files</span> HTML, CSS, Javascript</li>
        <li><span class="left">Layout</span> Responsive</li>
        <li><span class="left">Tags</span> News / Magazine</li>
        </ul>
        <br /></div>
        </div>
        <div style="clear: both;">
        </div>

        Description: Adjust

        Featured Products on the front page

        <ul class="all-themes">
        <li>
        <a href="https://xml-themes.blogspot.com/p/detikweb.html"><img alt="Detikweb - Template Blogger Mirip Detik Terbaru 2020" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEglJiKwABCvkRrBziuQEhD0HSTbH-0H5LalKkCzs0vjTEYstoKL2li3XzuH7SPfZYnf217RFfuDPJFnNC6auM3wxiAU97SG_X_pkYtsD25BqBzn9kT6g-7jlbAgyvFchh2qdwb203CDGrVq/s1600/detikweb-template-blogger-detikcom-terbaru-2020.jpg"/></a>
        <div class="description">
        <h2><a href="https://xml-themes.blogspot.com/p/detikweb.html">detikweb</a></h2>
        <div class="tag"><a href="https://www.xmlthemes.com/">News - Magazine <i>by XMLThemes</i></a></div>
        <div class="price1">Rp363.000</div>
        <div class="live-more"><span class="preview"><a href="https://detikweb.xmlthemes.com" rel="external" class="external text">Preview</a></span><span class="readmore"><a href="https://xml-themes.blogspot.com/p/detikweb.html">Read More</a></span></div>
        </div>
        </li>
        <li>
        <a href="https://xml-themes.blogspot.com/p/dokterseo.html"><img alt="DokterSeo - Template Blogger Mirip Alodokter" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjnCu_7sC5S3L4qxWvSZZds6veR6lvA_7TUJ7U6I4vhfzTj7CQ_bBDHdJbE3Yub2KH5jVhgSZEEnJn1qf8xVJNjTX7n7BM3Y_XofuJ7L3F6jznIuFE9WpymuoJ9E0gcv8JreL2kKH8t5Rrn/s1600/dokterseo-template-blogger-mirip-alodokter.jpg"/></a>
        <div class="description">
        <h2><a href="https://xml-themes.blogspot.com/p/dokterseo.html">DokterSeo</a></h2>
        <div class="tag"><a href="https://www.xmlthemes.com/">Bloggers <i>by XMLThemes</i></a></div>
        <div class="price1">Rp297.000</div>
        <div class="live-more"><span class="preview"><a href="https://alodokter.xmlthemes.com/" rel="external" class="external text">Preview</a></span><span class="readmore"><a href="https://xml-themes.blogspot.com/p/dokterseo.html">Read More</a></span></div>
        </div>
        </li>
        <li>
        <a href="https://xml-themes.blogspot.com/p/kompaz.html"><img alt="Kompaz - Template Blogger Mirip Kompas" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgGIBQ6GcsmyMdvWhDPrMjbcd1Y2OLVVt1wdRpdHDbrCoItKmJfglleTQhiWlGhseNQpAjpUY6fBm3mwvTj12c96DhC8NJ_-XzSBgjWj2eHOkS7x7LAFYFq1BxGRQUgMXXXwMoVTFjOSo2B/s1600/xml_kompaz_template_blogger_mirip_kompas.jpg"/></a>
        <div class="description">
        <h2><a href="https://xml-themes.blogspot.com/p/kompaz.html">Kompaz</a></h2>
        <div class="tag"><a href="https://www.xmlthemes.com/">News - Magazine <i>by XMLThemes</i></a></div>
        <div class="price1">Rp297.000</div>
        <div class="live-more"><span class="preview"><a href="https://kompaz.xmlthemes.com" rel="external" class="external text">Preview</a></span><span class="readmore"><a href="https://xml-themes.blogspot.com/p/kompaz.html">Read More</a></span></div>
        </div>
        </li>
        </ul>

        Description: Adjust

        2020-05-09

        How to setup MSD Responsive Grid Style Blogger Template


        How to setup MSD Responsive Grid Style Blogger Template

        Hi, I am Sayem Miaji. This Template is downloaded from SM Design .

        It's not a crack version it's just a clone version of MSD Responsive Blogger Template .

        Disclaimer: Do not upload this template on any blog or website, if you offer this template on your blog or website then i am give strike on DMCA.

        NAME: MSD Responsive Blogger Template

        Owner: MsDesignBD

        Url: https://www.msdesignbd.com

        https://www.templatemark.com

        Clone By: Sayem Miaji.

        Url:http://sayemtutorial.blogspot.com

        https://smdesignbd.blogspot.com

        https://docs-smdesign.blogspot.com

        Docs About It:

        Installation

        • Unzip the downloaded ZIP file.
        • On Blogger Dashboard Click Template.
        • Click Backup/Restore button (Top Right).
        • Click Choose File button. Find where the Template xml file location.
        • Then Click Upload.

        Sidebar Category

        Go to Layout > Sidebar Category List at the bottom of the page and select some important labels for show in sidebar.

        Sidebar Menu

        Go to Theme > Edit HTML and Find <!-- Sidebar Menu Start -->  (Use Ctrl+F to find shortcut). Now customize the menu with your blog link. Check the below screenshot.

        Sidebar Footer Menu

        Go to Theme > Edit HTML and Find <!-- Sidebar Footer Menu Start -->

        Sidebar Footer Social Icon

        Go to Theme > Edit HTML and Find <!-- Sidebar Footer Social -->

        Setup Subscribe box

        Go to Theme > Edit HTML and Find <!-- Popup Subscribe box --> and replace MsDesign92 with your feedburner username.

        Change Template Color

        Go to Theme > Customize > Advanced

        2020-05-08

        Doing Business Without Owning Goods with a Creative Business Idea


          In the previous article, there was an article about my plans to create a travel blog. There was a review about my traveling style, about how I can always save on travel costs. Many things support me to be able to save such a large budget, including the availability of information services such as motorbike, car rental, homestay, etc. at low rates. Usually, I get that info from the internet.

          That made me think of another aspect, it turns out that buying and selling online in the service sector is developing quite rapidly besides buying and selling goods. Moreover, the world of traveling itself becomes a thing that is loved today. So, there are so many opportunities that can be taken.

          Who would have thought that selling services like this could sell in the digital world? If we talk about this in 2010, certainly not many people believe. But along with the rapid advances in technology, services can be sold to all people throughout the world. If you have the ability to be a tour guide in Bali, then you can sell it to prospective tourists from Australia who are planning a vacation trip. And this does not need to be done face to face, but only through the internet. It's really fast, isn't it, technological developments in digital eta.


          Determine Creative Business Ideas

          Do you have the same hobby as me, which is traveling? Already feel to have the ability and knowledge that is qualified about various tourist destinations that have been visited? This is the time to utilize this knowledge into creative business ideas. You can try to open tour guide services, tour packages, motorcycle taxis, etc. At least in the city where you used to live. From my point of view as a consumer, it is really needed you know. In fact, it becomes a primary need for travel support.

          What if you don't have assets? Try experimenting. Do whatever suits your capacity. Many really can be sold. Another example in the field of traveling for example photo services if you have more knowledge about the world of photography. Do you have a large or unused living area? It can be rented out to become a homestay for visitors.




          Utilizing Technology as a Media Promotion

          After determining the creative business ideas that will be cultivated, the next step is promotion. In the business world, promotion becomes very crucial. It's useless to sell services, but no one knows. For starters, you can use social media as a promotional tool. Join a traveling or backpacker group on Facebook, often writing tweets on Twitter and the like. Next, make a website as a promotional media mainstay.


          Why Use a Website?

          If likened, the website is like home. While social media, marketplaces, and others are just rented. The difference? Yes obviously a lot. At home, we are free to do anything. Meanwhile, when hitching a ride can not arbitrarily renovate or do this and that. Including on the website, we have full authority in creating promotional media for our business.

          As written at the beginning, most of the information I get when searching for traveling support facilities is obtained from the internet. And I tend to choose service providers that have websites, not just social media. Information from the official website feels more exclusive and reliable. You could say that the website is like the most serious promotion stage. That is, by having a website the business credibility will increase in the eyes of consumers. This also applies to sell goods online, not just services.

          In addition, the target market that can be reached is also wider with the website. If on social media, our target is only people who use social media. Likewise, the marketplace, the target that can be reached is only limited to people who also use the marketplace. Unlike the website, we can reach the target as much as possible. Very tempting is not it?


          Advancing Creative Business Ideas with a Website

          Want to start trying but don't know how to create a website? Now everything is easy, as long as they have a strong will, are not lazy, and are serious about trying. Lots of information can be sought on how to create a website for beginners. Even the simple ones don't matter, what is important is to support the business promotion or as a company profile.

          Another important thing that must be prepared is to look for cheap web hosting. What for? Previously it was mentioned that the website is "home". Then hosting is "land". Hosting is a place where websites are established. Of course, we have to choose the location of "land" that is safe from a disaster so that the "house" is not damaged. One hosting provider that is safe and has good service is Niagahoster.

          After choosing Niagahoster as a hosting place, the next step is to choose a domain. He acts as an "address". If you want to promote "home" so that many people come, then give them a clear "address". Domain names are also one thing that is often considered by consumers. I also prefer websites with TLD (Top Level Domain) domains compared to free domains. It feels more like a benefit. You can start listing cheap domains by utilizing various promos given by Niagahoster.

          Those are a few examples of my creative business ideas (based on personal experience) that you can try. Or at least it can be a picture and can be applied according to their respective skills and capacities.


          It doesn't have to be in the field of traveling. Many also successfully sell other services by using a website as a promotional tool. Such as article writing services, services to create themes/website templates, services (jastip), and others. You can still do business in the digital world even if you don't have the goods by selling the skills you have.

          [How to Fix] Blogger Breadcrumb Error | Data-vocabulary.org Schema Deprecated

          [How to Fix] Blogger Breadcrumb Error | Data-vocabulary.org Schema Deprecated
          Fix Blogger Breadcrumb Error on search console. Are you facing blogger breadcrumbs error? Here is your solution. A few days ago I got an email notification from Google Search Console about the problem of breadcrumb data-vocabulary.org schema deprecated.



          How to handle it?

          Before you solving this breadcrumb problem, at first good to know what data-vocabulary.org is?
          Fix Blogger Breadcrumb Error
          In this post, I show you how to Fix Blogger Breadcrumb Error. Breadcrumb is one important element that should be installed on every blog or website, no exception for the Blogger platform (Blogspot).

          In addition to structured data formats, structured data schemes function like a kind of dictionary, defining terms for types of things (for example "People", "Events"), and for properties and relationships (for example "names"). By maintaining this separation between formats and schemes, it is possible for users of different formats to take advantage of the same scheme and be widely shared. Even so, Google still supports this structured data version until Google will stop using data-vocabulary.org starting in April 2020.

          What is data-vocabulary.org?

          Blogger Structured data Data-Vocabulary.org is Google's implementation of structured data that was introduced in 2009. The data was monitored by structured data Schema.org two years later in 2011.

          Structured data Schema.org is Open Source structured data supported by Google and other organizations. In 2011 Google updated the Data-Vocabulary.org site to add links to other pages to encourage the move to Schema.org's structured data.

          Is Breadcrumb Important for the blogger template?

          Yes, of course, this is important because it deals with SEO and data structure. He made the blog have clear navigation and easier to read on the Google search page (SERP). Visitors can easily see the label or category that is the parent of the article.

          How to Install Breadcrumb for Blogger

          Does your template already have breadcrumbs with no errors? So congratulations, you don't need to be tired of reading this tutorial. Stop and close this article because there is nothing to adjust anymore. But if it turns out there isn't, or there is but still shows an error message, please read and follow the tutorial on how to install SEO friendly breadcrumb on this Blogspot until it runs out.

          Note: Before starting this tutorial, backup your template file.

          Step 1:

          Go to Theme > Customize > Advanced > Add CSS and paste the below code on the CSS box and save the template.

          .breadcrumb { margin-bottom: 20px; }
          .breadcrumb, .breadcrumb a, .breadcrumb a:hover { font-size: 12px; color: #777; }
          Check the below screenshot
          How To Add CSS
          Step 2
          Go to Theme > Edit HTML and Look for the following code <b:includable id='breadcrumb' var='posts'> (use Ctrl+F find shortcut).

          Now copy and paste below code between <b:includable id='breadcrumb' var='posts'>...</b:includable>
          <b:if cond='data:view.isPost'>
          <b:loop values='data:posts' var='post'>
          <div class='breadcrumb' itemscope='itemscope' itemtype='https://schema.org/BreadcrumbList'>
          <span itemprop='itemListElement' itemscope='itemscope' itemtype='https://schema.org/ListItem'>
          <a expr:href='data:blog.homepageUrl.canonical' itemprop='item' title='Home'>
          <meta content='1' itemprop='position'/>
          <span itemprop='name'>Home</span></a>
          </span>
          <b:if cond='data:post.labels'>
          <b:loop index='num' values='data:post.labels' var='label'> &amp;nbsp;&#8250;&amp;nbsp;
          <span itemprop='itemListElement' itemscope='itemscope' itemtype='https://schema.org/ListItem'>
          <meta expr:content='data:num+2' itemprop='position'/>
          <a expr:href='data:label.url + &quot;?&amp;max-results=8&quot;' expr:title='data:label.name' itemprop='item'>
          <span itemprop='name'><data:label.name/></span>
          </a>
          </span>
          </b:loop>
          <b:else/>
          &amp;nbsp;&#8250;&amp;nbsp; There are no categories
          </b:if>
          </div>
          </b:loop>
          </b:if>
          See below screenshot
          See ScreenShot
          Now save the template and check the result on Google Structured data testing tool.

          Validation on Search Console

          After installation, check again to make you more sure that this breadcrumb is correct and valid. Return to using Google Structured Data as mentioned above. After that, wait a few days and check in Google Search Console. If the breadcrumb is valid, the report will appear there, precisely under the menu Enhancements. Make sure nothing is wrong.

          How do you understand all the steps to Fix Blogger Breadcrumb Error above? Please provide comments if there is anything unclear. Immediately practice it on each other's blog.

          Pure Apk Premium Blogger Template

          Pure APK Responsive Blogger Template. Another APK sharing blogger template by MS Design. Free download Pure APK Blogger Template for android apps sharing website. This is the responsive and minimal apps sharing blogger template for the Blogspot platform.

          Pure APK Blogger Template

          Before pure APK template, we've published this type of more two templates and these were Blue APK and Sure APK. Now welcome our another big and next label APK sharing blogger template.
          Footer Credit



          Extra Features Of Pure Apk Blogger Template:

          Features Availability
          Responsive True Check
          Mobile Friendly True Check
          Google PageSpeed Insights True Check
          Google Testing Tools Validator True
          SEO Friendly True
          1 Column True
          2 Style True
          Crypto JS Script True
          Well Documentation True