Friday, March 24, 2017

How To Make Mobile Section For Gadgets In Layout In Blogger

How-To-Make-Mobile-section-For-Gadgets-in-Layout-In-Blogger
As predicted by Google that from now people will read blogs and sites more from phones rather than from desktop that's why everyone should make their mobile site and maintain it to get maximum traffic not from only desktop but also from mobile. It is also good to get mobile traffic because it can increase your earnings from both Adsense and Appnext. Specially mobile traffic is best for Appnext.

Making mobile site is not easy in a platform like blogger because everyone is not able to do it as its not easy to code and also most methods don't work in blogger. So I frequently write about making mobile site for blogger blogs to make it easier for other bloggers to make their own mobile site.


So in this post I am going to teach you how to make sections for mobile gadgets in blogger layout. So follow below steps to make sections for your mobile gadgets.

Step 1: Go to blogger > login to your account and navigate to Theme.

Step 2: Click on Edit Html to begin editing your blog theme to make sections for mobile gadgets.

how-to-edit-blogger-theme

Step 3: Search for below code by using CTRL+F:
<b:section class='header' id='header'

You will find this code:
<b:section class='header' id='header' maxwidgets='1' name='Header' showaddelement='no'>
<b:widget id='Header1' locked='true' title='Horizontal scroll menu (Header)' type='Header'>....</b:widget>
</b:section>

how-to-make-mobile-section-in-blogger

Step 4: Now just after above code paste below code and save your template.
<b:section id='mobile-section-1'>
</b:section>

Step 5: Go to layout to see your mobile gadget section.

You will find your gadget section below header section in layout but if you want you can make another one in the footer by the above method, all you need to do is to paste below code above </html> in your template.


<b:section id='mobile-footer-section'>
</b:section>

how-to-make-footer-section-for-mobile-gadgets-in-blogger

Important Note: Although you can make unlimited sections for your blog's mobile site but you will need to enable each gadget you add in these sections for mobile only. So after adding a gadget in mobile section of your blog go to your template and add mobile='yes' after locked='false' in your gadget code as shown in below image. For details about how to enable a gadget for mobile device only read How To Show A Widget In Mobile View In Blogger

how-to-show-a-gadget-only-in-mobile-blogger

Don't for get to give us feedback about this post, if you have any questions ask me in comments. Share this post with other bloggers. Thanks for visiting 101Helper.

Search Keywords: how to show gadget in blogger mobile site, how to make separate section for mobile gadgets in blogger, how to edit layout in blogger, make header and footer section for mobile site in blogger

Thursday, March 9, 2017

How To Hide Ads And Gadgets On Error Pages In Blogger

404-error-message-adsense-blogger

Before explaining about hiding things on error pages, i am going to tell you why do you need to do so? Its because Ad networks like Good Adsense and Adhitz both prohibit showing ads on pages which are empty or on error pages and reason for not showing gadgets in error pages is that nobody needs them and these gadgets makeerror pages look ugly and error pages also load slowly so visitors are unable to leave page until the page is loaded completely so it's necessary to hide gadgets and ads on error pages.

In this post i will show you how to hide any ad or gadget on error page.


Step 1: Go to Blogger Dashboard and open template / theme.

how-to-hide-ads-and-gadgets-in-blogger-error-pages

Step 2: Edit Html.
hide-ads-on-error-pages-in-blogger

Step 3: Now find the gadget in which you have added your ad code or if you have added your code directly to your template e.g below </head> or above </body>.


Step 4: After finding your ad code gadget or ad code, copy below code.

<b:if cond='data:blog.pageType != &quot;error_page&quot;'>

Step 5: Paste this code above your ad code if you have added code directly to your template and in case of gadget paste the copied code below this line:

<b:includable id='main'>

As shown in below image:

how-to-gide-google-ads-in-error-pages-in-blogger

Step 6: Add below piece of code at the end of your code and above </b:includable> in case of gadget as shown in above image.

</b:if>

Step 7: Save your theme / template and you are done.

To check if your code is working fine, open any url of your post and add any wrong characters to it and view it, your gadgets or ads which you have hidden will not show on error pages.

What else can you do with above code?

A special thing about this code is that you can hide unwanted gadgets on error pages and also you can use it reversely by making a small change in it. Then it will start showing content on error pages only like if you want to show an error message or a search box to your visitors who accidentally reach an error page to let them search your site and find what they are looking for. So here is the reverse effect code:

<b:if cond='data:blog.pageType = = &quot;error_page&quot;'>

Also don't forget to close it with the same ending code: </b:if>

Your final code should be like this in both cases:

<b:if cond='data:blog.pageType = = &quot;error_page&quot;'>
My Content / Ad Code
</b:if>

If you have any confusion or problem ask me in comments or contact.

Thanks for visiting 101Helper.

Search Keywords: how to hide gadgets and ads on error pages in blogger,how to hide gadgets in 404 error pages blogger, how to hide google adsense ads in blogger error pages,how to show error message on 404 error pages in blogger,101helper blogger tricks

Tuesday, February 14, 2017

How To Eliminate Render-Blocking Scripts And CSS - Blogger

eliminate-render-blocking-javascript-css


As page loading speed matters so much that's why I write frequently about how to make blog or site load faster and so is this post about and I am writing this post on request of a visitor to help him and also those who also have this problem in their blogs. So let me start with intro of what is render blocking scripts and CSS.

What Is Render-Blocking Scripts And CSS ?

Render blocking script is usually a script from any external source which is called by using a <srcipt src="...../files/style.css"/> tag and the problem lies in the URL or storage of the javascript file. Some common problems with external scripts are:

1. The URL which contains the Javascript file is redirecting to multiple URLs and then reach the Javascript file.

2. The URL which contains the Javascript file responds slowly due to server error.

3. The URL which contains the Javascript file sometimes does not respond due to down server status.

Similar to Javascript files, there are some CSS files which are stored externally have the same problems as mentioned above.

How To Identify Render-Blocking Scripts 

To identify render blocking script or css you need to use PageSpeed Insights. It will show you which scripts and css files are blocking and making your page load slow.

how-to-eliminate-render-blocking-scripts-css-in-blogger

How To Remove Render-Blocking Scripts And CSS From Blogger

Step 1: Find render-blocking scripts by using Google PageSpeed Insights as shown in the above image.

Step 2: Go to blogger dashboard > Template > Edit Html.

how-to-edit-template-in-blogger

Step 3: Search for that script or CSS using CTRL+F in the code which you found to be blocking in the PageSpeed Insights tool.

Step 4: Do following things:

For Javascript:

1. Add "Defer" Tag:

A defer tag is a tag which stops the script from loading and loads it when the whole page contents are loaded completely so it improves page loading speed. To add defer tag to your javascript simply add defer='defer' as showing in below example:

<script defer="defer" src="...file/code.js"/>

2. Add External Javascript Internally:

If you see that javascript loading on your blog is redirecting or taking time to load than add the code above </head> in your template or shift it to another host like GitHub.

 Recommended:  How To Store Blogger Codes On Github To Speed Up Blog ?

3. Remove Blocking Code:

If you do above things and still see that the script is blocking then remove that script or copy it and add it in the Layout as a gadget.

 Recommended:  How To Add Or Remove Gadgets In Blogger ?

4. Use "async" Tag:

This tag tells the page that the code which is asynchronised will be executed when it is available and will not be executed when not available so it minimizes page loading speed. To add async tag to your code simply add async='async' because blogger doesn't accept async alone. Here is a sample:

<script async="async" src="...file/code.js"/>



For CSS:

1. Add CSS in <head>:

If you have CSS code stored externally but you are loading it in body by using below code:

<link href="...file/code.css" rel="stylesheet" type="text/css"/>

Simply move it below <head> in your template

2. Use Github:

If your hosting is not responding in time or have many redirects(as in GOOGLE DRIVE) then use Githun to store your codes.

 Recommended:  How To Store Blogger Codes On Github To Speed Up Blog ?

Step 5: Save your template and you are done successfully.

What To Do For Internal Blocking Javacript Or CSS ?

If you have any internal codes which are blocking your pages then remove them because you can't modify them to get work and also avoid such scripts because they are coded by inexperienced bloggers.

Final Words:

By following above steps you can remove blocking javascript and css but if you need the codes and you want to keep them but minimize the loading speed then don't remove the codes but store them on github or in the layout. You may not see any improvement in the Google PageSpeed Insights tool but there will be surely some improvement which you will observe while loading your page.

I hope this post was helpful to you, if not ask me about it. Thanks for visiting 101Helper. Like us on Facebook and never miss a post.

Search keywords: How To Eliminate Render-Blocking Scripts And CSS - Blogger, Blogger blog page loading speed, how to remove blocking scripts and css from blogger blog,how to speed up blog,how to minimize page loading speed in blogger

Saturday, January 28, 2017

How To Add Overlay / Interstitial Adsense Ads in Blogger Mobile Site

how-to-add-overlay-interstitial-ads-in-blogger-mobile-site

Adsense being compatible with mobile sites lets you to add ads in mobile site and its really important to add Adsense ad units in mobile because it increases your earnings effectively and massively. So to increase your Adsense earnings you need to install special ad units which will fit mobile screens and help you to get more clicks and increase CPC earnings. You can see a demo of floating Adsense ad unit in below image.

how-to-add-floating-adsense-ad-in-blogger-mobile-site

This Adsense ad unit can be hidden by tapping and pushing it below and its best for those Adsense user who have more mobile traffic.

So in this post I am going to show you how to install Floating Adsense Ad unit in blogger mobile site.

Ad Types And Description.

1. Anchor/overlay ads:

overlay-ad-adsense

Description By Adsense:

  • Shown by AdSense at optimal times to help increase revenue and provide a good user experience

  • Don't count as advertisements as part of our valuable inventory policy

  • Only show on high-end mobile devices

2. Vignette/Interstitial ads:

pop-up-adsense-ad

Description By Adsense:

  • Shown by AdSense at optimal times to help increase revenue and provide a good user experience

  • Don't count as advertisements as part of our valuable inventory policy

  • Only show on high-end mobile devices

  • Limited in number to maintain a good user experience


How To Add Floating / Hover Adsense Ad in Blogger Mobile Site?

Step 1: Go to Adsense and Login.

Step 2: Click on My Ads and choose Page-Level ads.


Step 3: Enable both Anchor/overlay ads and Vignette ads.


how-to-add-adsense-ads-in-blogger-mobile-site

Step 4: Get your ad code.

how-to-add-ads-in-blogger-mobile-site

Step 5: Go to layout and click on add a gadget.

Step 6: Choose Html/Javascript and paste your ad code.

Step 7: Save the gadget and read How To Show Ads In Mobile View In Blogger for further steps.

I hope this post helped you, if you have any problem regarding this post, leave a comment or contact me.

Thanks for visiting 101Helper.

Search Keywords: How To Add Floating / Interstitial Adsense Ad in Blogger Mobile Site, how to enable anchor ads in blogger mobile, Google adsense interstitial ad,anchor ad,floating adsense ad mobile site,push ads in blogger mobile.

Tuesday, January 17, 2017

How To Add Google Analytics Code In Blogger

GoogleAnalytics-blogger
What Is Google Analytics?

Google Analytics are tools powered by Google which are super good to analyze your site. It keeps all information about your site e.g where your visitors are coming from, what is the country of your visitor, How much time is your visitor spending on your site, What is the behavior of your visitor etc. So with the help of Google Analytics you can keep every info about your site or blog and use it to improve your earnings and to make your site or blog better.

Why Should I Use Google Analytics?

The answer is simple and obvious, you can use Google Analytics to improve your site and earnings.

How can I increase my earnings using Google Analytics? Well, for example you have an interstitial ad which shows up after 10 seconds and overlays your content and you can see that your visitors are aware about your ad and they are smart :p  and when the ad shows up they simply close it and use your site for free without paying you a cent then you can know with the help of Google Analytics that exactly how much time your visitors are spending on your site so for instance your visitor is spending 2 mins on your site or blog then you can show your ad after 20 sec or after 40 sec so your visitor won't understand when the ad is going to show up so you will get more clicks and hence your earnings will increase.

How to improve your blog or site using Google Analytics? Let me share another example to explain how can your improve your site and user experience with the help of Google Analytics. So for example you have a blog and you have installed a "Pop Up Page Take Over Follow Buttons" in your blog using Hellobar then you can set the perfect time for the pop up to show up in the due time and make a good user experience. Moreover you can also plan timings of slideout and Newsletter to show up when your visitor is on your site so with the help of Google Analytics you can manage your dynamic widgets and get benefit of them.

How To Use Google Analytics For Blogger?

Step 1: Add your blog to Google Analytics.

Step 2: Go to ADMIN in Google Analytics and select a property to get its analytics.

Step 3: Select Tracking Info > Tracking Code.


how-to-use-google-analytics-for-blogger

Step 4: Copy the Tracking ID or Website tracking code, its your choice you can copy the tracking ID or Website tracking code.

how-to-add-google-analytics-code-in-blogger

Step 5:  Follow below steps if you have copied website tracking code or scroll below to add tracking ID in your blog.

How to add Google Analytics website tracking code in blogger?

  • Go to Blogger > Template > Edit HTML and search for </head>
  • Paste your copied code above it.
  • Save your template and you are done.

  • How to add Google Analytics website tracking ID in blogger?

  • Go to Blogger > Settings > Other > Google Analytics.
  • Paste your tracking ID.
    how-to-add-tracking-id-in-blogger-google-analytics
  • Click on Save settings button on top right of the page and you are done.


  • That's it, you are done successfully. If you have any question ask me in comments or contact me.

    Follow us on social networks, thanks for visiting 101Helper.

    Search keywords: How To Add Google Analytics Code In Blogger, Google Analytics website tracking ID,Google Analytics website tracking code in blogger,what is Google anlytics,how to use google analytics,how to improve user experience and earnings with google analytics.

    Saturday, December 10, 2016

    Horizontal Scrolling Menu For Blogger Mobile Site



    Mobile screen being small can't hold a wide horizontal menu so people add vertical menu for mobile site specially bloggers do so but there is a simple way of install a horizontal menu in blogger mobile site that is making a scrollable menu so it will show some tabs of the menu and others can be seen by touching and scrolling. As you know that almost everyone is now using a touch screen mobile so it is a good menu for your mobile site. So in this post I am going to share 4 different types of horizontal scrolling menus. Follow below steps to add any of the menu in your blog's mobile site.


    Live Demo (Open In Mobile For Best Experience)

    How To Add Horizontal Scrolling Menu For Blogger Mobile Site?

    Step 1: Go to blogger and open Layout.

    Step 2: Add a gadget just above your "Blog Posts Gadget" as shown in below image and click on Html/Javascript.

    how-to-add-code-in-blogger

    how to add a gadget in blogger

    Note: If you are not able to add gadget above Blog Posts then simply add it in sidebar and drag it above Blog Posts because its important to keep it there

    Step 3: Copy code of desired menu from below and paste it into Html/Javascript window you just opened in step 2.

    Simple Scrollable Nav Without Logo.


    <style>
    .nav-scroll {
        background-color: #333;
        overflow: auto;
        white-space: nowrap;
        position: relative;
    }
    .nav-scroll a {
        display: inline-block;
        color: white;
        text-align: center;
        padding: 14px;
        text-decoration: none;
    }
    .nav-scroll a:hover {
        background-color: #777;
    }
    </style>
    <div class="nav-scroll">
      <a href="https://www.blogger.com">Home</a>
      <a href="#news">News</a>
      <a href="#contact">Contact</a>
      <a href="#about">About</a>
      <a href="#support">Support</a>
      <a href="#blog">Blog</a>
      <a href="#tools">Tools</a>
      <a href="#base">Base</a>
      <a href="#custom">Custom</a>
      <a href="#more">More</a>
      <a href="#logo">Logo</a>
      <a href="#friends">Friends</a>
      <a href="#partners">Partners</a>
      <a href="#people">People</a>
      <a href="#work">Work</a>
    </div>

    Horizontal Scroll Nav With Scrollable Logo.

    horizontal-nav-with-scrolling-logo-mobile-blogger

    <style>
    .nav-scroll {
        background-color: #333;
        overflow: auto;
        white-space: nowrap;
        position: relative;
    }
    .nav-scroll a {
        display: inline-block;
        color: white;
        text-align: center;
        padding: 14px;
        text-decoration: none;
    }
    .nav-scroll a:hover {
        background-color: #777;
    }
    .nav-scroll img {
        width: 100px;
        float: left;
        height: 48px;
        background: #fff;
    }
    </style>
    <div class="nav-scroll">
    <img alt="logo" src="https://www.servicetrade.com/wp-content/uploads/2016/04/your-logo-here.png"/>
      <a href="https://www.blogger.com">Home</a>
      <a href="#news">News</a>
      <a href="#contact">Contact</a>
      <a href="#about">About</a>
      <a href="#support">Support</a>
      <a href="#blog">Blog</a>
      <a href="#tools">Tools</a>
      <a href="#base">Base</a>
      <a href="#custom">Custom</a>
      <a href="#more">More</a>
      <a href="#logo">Logo</a>
      <a href="#friends">Friends</a>
      <a href="#partners">Partners</a>
      <a href="#people">People</a>
      <a href="#work">Work</a>
    </div>


    Horizontal Scroll Nav With Fixed Logo On Left.

    horizontal-nav-with-logo-mobile-blogger

    <div class="nav-mob">
    <img alt="brand" id="brand" src="https://www.servicetrade.com/wp-content/uploads/2016/04/your-logo-here.png"/>
    <div class="nav-scroll">
      <a href="https://www.blogger.com">Home</a>
      <a href="#news">News</a>
      <a href="#contact">Contact</a>
      <a href="#about">About</a>
      <a href="#support">Support</a>
      <a href="#blog">Blog</a>
      <a href="#tools">Tools</a>
      <a href="#base">Base</a>
      <a href="#custom">Custom</a>
      <a href="#more">More</a>
      <a href="#logo">Logo</a>
      <a href="#friends">Friends</a>
      <a href="#partners">Partners</a>
      <a href="#people">People</a>
      <a href="#work">Work</a>
    </div></div>
    <style>
    #brand {
        position: static;
        float: left;
        width: 105px;
        height: 50px
    }
    .nav-scroll {
        background-color: #333;
        overflow: auto;
        white-space: nowrap;
        position: relative
    }
    .nav-scroll a {
        display: inline-block;
        color: white;
        text-align: center;
        padding: 14px;
        text-decoration: none
    }
    .nav-scroll a:hover {
        background-color: #777;
    }
    .nav-scroll img {
        width: 100px;
        float: left;
        height: 48px;
        background: #fff
    }
    .nav-mob {
        position: relative;
    }
    </style>



    Horizontal Scroll Nav With Fixed Logo On Top.

    horizontal-nav-with-fixed-logo-on-top-mobile-blogger

    <div class="nav-mob">
    <div id="slogo">
    <img alt="logo" src="https://www.servicetrade.com/wp-content/uploads/2016/04/your-logo-here.png" /></div>
    <div class="nav-scroll">
      <a href="https://www.blogger.com">Home</a>
      <a href="#news">News</a>
      <a href="#contact">Contact</a>
      <a href="#about">About</a>
      <a href="#support">Support</a>
      <a href="#blog">Blog</a>
      <a href="#tools">Tools</a>
      <a href="#base">Base</a>
      <a href="#custom">Custom</a>
      <a href="#more">More</a>
      <a href="#logo">Logo</a>
      <a href="#friends">Friends</a>
      <a href="#partners">Partners</a>
      <a href="#people">People</a>
      <a href="#work">Work</a>
    </div></div>
    <style>
    .nav-mob {
        position: relative;
    }
    #slogo img {
        float: none;
    width:100px
    }
    #slogo {
        position: static;
        width: 100%;
        text-align: center;
        padding: 2px 0px;
        background: #eaeaea
    }
    .nav-scroll {
        background-color: #333;
        overflow: auto;
        white-space: nowrap;
        position: relative
    }
    .nav-scroll a {
        display: inline-block;
        color: white;
        text-align: center;
        padding: 14px;
        text-decoration: none
    }
    .nav-scroll a:hover {
        background-color: #777
    }
    .nav-scroll img {
        width: 100px;
        float: left;
        height: 48px;
        background: #fff
    }
    </style>

    Step 4: Save the gadget and note its ID or name it so that you can find it in your template for next steps.

    Read: How To Find ID Of A Widget In Blogger

    Step 5: Go to template and click on Edit Html.

    how-to-add-edit-html-in-blogger

    Step 6: Find your "Mobile Nav Gadget" in your template you just added in above steps with the help of its ID or name using Ctrl + F on your keyboard. You can directly jump to your gadget also.

    how-to-search-blogger-template

    Step 7: After finding the gadget copy below piece of code and paste it after locked='false' as shown in below image:

    mobile="only"

    how-to-show-a-gadget-in-blogger-mobile-view


    Step 8: Save your template and again go to Blogger > Template > Mobile.

    How-to-optimize-blogger-blogs

    Step 9: Change Default template to Custom and click on Save.
    mobile-templates-blogger-101helper

    That's it. Now open your mobile site in your mobile to see your menu working.

    I hope you liked this tutorial, for more menu tutorials go to Blogger menus

    Thanks for visiting 101Helper, Share this tutorial with others.

    Search Keywords: Horizontal Scrolling Menu For Blogger Mobile Site, menu for blogger mobile site,pure css menu for blogspot blog,how to add css,javascript menu in blogger mobile view,101helper menus for blogger,blogging tutorials.

    Friday, December 2, 2016

    How To Add HTML Tables In Blogger Posts

    HTML tables are simple tables which gives a summery of something and are mostly used by those bloggers who own blogs about money so they show there content e.g info about ad networks in the form of tables. But not all bloggers know how to add HTML tables in blog posts and blogger does not have any option to create HTML tables so it can be added only manually. And that's actually the reason of writing this post. In this post I will share with you how to create an HTML table and add it in your blog posts. I will show you only simple one because there are a number of types of HTML tables and I can't share each and every type of HTML table so I will share a simple HTML table with text Like this!So lets get started!

    How To Add HTML Table In Blogger Posts?

    Step 1: Copy code of HTML table from below:

    <style>
    #mytable{
    width:100%
    }
    #mytable, th, td {
        border: 1px solid black;
        border-collapse: collapse;
    }
    #mytable th, #mytable td {
        padding: 5px;
        text-align: left;
    }
    </style>
    <table id="mytable">
      <tr>
        <th>Firstname</th>
        <th>Lastname</th>
        <th>Age</th>
      </tr>
      <tr>
        <td>Jill</td>
        <td>Smith</td>
        <td>50</td>
      </tr>
      <tr>
        <td>Eve</td>
        <td>Jackson</td>
        <td>94</td>
      </tr>
      <tr>
        <td>John</td>
        <td>Doe</td>
        <td>80</td>
      </tr>
    </table>

    Step 2: Go to blogger > Posts > Edit a post Or Create a new post.

    Step 3: Switch to Html view of the post editor and paste the copied code after a certain text or in the beginning of the post or after an image, where ever you want to show your HTML table in the post.

    how to switch to HTML editor In blogger.png

    Step 4: Make changes according to your choices and publish your post to see your HTML table.

    Understanding The HTML Table Code:
    html table blogger


    After adding above code for HTML Table, you need to make changes in the text and the table code and for that you need to understand the code because without it you can't add a new row in your table and can't add custom info in the rows and columns of your table. so read out below to know what the code is doing.

    Here is the CSS code of your table:

    <style>
    #mytable{
    width:100%
    }
    #mytable, th, td {
        border: 1px solid black;
        border-collapse: collapse;
    }
    #mytable th, #mytable td {
        padding: 5px;
        text-align: left;
    }
    </style>

    It gives your table the borders for each row and column and if you want, you can add your own decorations to your table for example to add a background color you need to add this:

    background: yellow;

    You have to add above piece of code in this part of code:

    #mytable{
    width:100%;
    background: yellow;
    }

    Now its time to make changes in the info which is added in your table's row and columns. Here is the overall code for your table:

    <table id="mytable">
      <tr>
        <th>Firstname</th>
        <th>Lastname</th> 
        <th>Age</th>
      </tr>
      <tr>
        <td>Jill</td>
        <td>Smith</td>
        <td>50</td>
      </tr>
      <tr>
        <td>Eve</td>
        <td>Jackson</td>
        <td>94</td>
      </tr>
      <tr>
        <td>John</td>
        <td>Doe</td>
        <td>80</td>
      </tr>
    </table>

    In this code blue one is the first row of your table, orange is the second, green is the third and yellow is the fourth row of your table. Now you can change text according to your choices.

    To add a new row you need to add a simple piece of code below the yellow one, here is the simple piece of code that is need to be added for new row:

    <tr>
        <td>Jill</td>
        <td>Smith</td>
        <td>50</td>
      </tr>

    For more HTML tables visit w3schools. Or search for online HTML table generator and create one for you.

    I hope you found this post helpful. If you have any question ask me in comments or contact me. Thanks for visiting 101Helper.

    Search Keywords: How to add HTML Table in blogger posts, html tables with rows and columns for blogger, how to add html table in blogger with CSS style, show content in table form in blogger posts.