Add Extra Column to Blogger Footer

Adding extra column to Blogger footer:
By default, Blogger provides one-column, two-column, and three-column footer layouts. It does not provide a 4-column footer layout or anything above that. However, if you want a 4-column footer, you can manually add an extra column to your Blogger footer.

In this post, I will show you how to add a 4-column footer to your Blogger footer. Using the same method, you can create more than 4 columns as well.

How to add an extra column to your Blogger footer :

We can easily add an extra column to the Blogger footer without adding any CSS code to Blogger. We can add a 4-column, 5-column footer, or more columns to Blogger. With simple changes to your Blogger template code, you can easily add an extra column.

Follow below steps to add an extra column to Blogger blog footer

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Template

Step 3 : Click on Edit template

Step 4 : Search <footer> tag in template code, in <footer> section u can see below code

<macro:param default='2' name='num' value='2'/>

To add extra column, just increase value='2' to 4 or more i.e value='4' or more

Step 5 : Click on Save

Now you can easily add an extra column to your Blogger footer.

Add Adult Content Warning Page to Blogger blog

How to Add Adult Content Warning Page to Blogger blog :

If your Blogger blog contains adult materials, it is recommended to add a content warning page. This page will display before readers enter the blog, giving them a warning about the content. Adding a content warning page to Blogger blogs with adult-oriented materials is easy to do.

Follow below steps to add content warning page to Blogger

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Settings

Step 3 : Click on Others

Step 4 : Select Yes next to 

Step 5 : Click on Save settings.

Change Comment Timestamp Format in Blogger

The comment timestamp in Blogger shows the publishing date of a comment. There are different comment timestamp formats available in Blogger, and we can easily change the comment timestamp format on our Blogger blog.

Follow below steps to change comment time stamp format in Blogger blog

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Settings

Step 3 : Click on Language and formatting

Step 4 : Under "Settings", select "Formatting". Then, select "Comment Timestamp Format" from the list next to "Comment Timestamp formatting".

Step 5 : Click on Save Settings.

Enable or Disable Lightbox View for Blogger Images

Lightbox view feature for Blogger images:
If the lightbox view is enabled on your Blogger images, when you click on an image in Blogger, it will bring up the image on top of your blog, i.e., the image will be shown in an iframe window without leaving the page. You can enable or disable lightbox view on your Blogger easily.

How to Enable or Disable Lightbox View for Blogger Images:

Go to the Blogger settings, where you can find the Lightbox feature settings under the "Posts and comments" section. You can easily enable or disable the Lightbox feature from there.

Follow below steps to enable or disable lightbox view for Blogger images

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Settings

Step 3 : Click on Posts and Comments

Step 4 : Select "Yes" next to "Showcase images with Lightbox" to enable Lightbox View for Blogger                   Images.

              Or select "No" to disable Lightbox View for Blogger Images.

Step 5 : Click on Save Settings.

Add Print Friendly Button to Blogger

Adding print friendly button on Blogger:
To allow blog visitors to print out your blog articles on your Blogger blog, you can add a Print button. One way to do this is by using the PrintFriendly website. After adding the PrintFriendly button to your Blogger, a print button will appear on your blog posts. There are other services available to add a print button to your Blogger, but PrintFriendly is a popular option.

How to Add a Print Friendly Button to Blogger :

First go to PrintFriendly and create print button to your Blogger blog. Next get html/script code of  print button and then add that code to your Blogger blog. So what you have to do first is, get the PrintFriendly button code from PrintFriendly website.

How to get PrintFriendly button code :

Step 1: Go to PrintFriendly web site

Step 2: Click on Website button and choose the site type as Blogger/Blogspot

Step 3: Choose button style

Step 4: Select features as you like

Step 5: At the bottom, you can see "Add code directly to your template" and copy that code.

Follow the below simple steps to add print friendly button to your Blogger

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Template

Step 3 : Click on Edit Html

Step 4 : Search for the <data:post.body/'> tag in the template code.

             Paste the PrintFriendly button code just before or after the  <data:post.body/'> tag

Step 5 : Click Save Template


On old blogger template :

on old blogger template search  <div class='post-footer'>

paste print friendly button code after the <div class='post-footer'> tag in Blogger Template

Remove Blogger Attribution Gadget

Blogger Attribution Widget:
You can see the "Powered by Blogger" message on your Blogger blog footer. This message is added by the Attribution widget. The Blogger Attribution gadget appears at the bottom of the Blogger blog footer. We can edit and remove the attribution gadget/widget in Blogger. You can also customize the Blogger Attribution widget as you like. In this post, I'm going to show you how to remove/hide the Blogger attribution widget. Later, I will show you how to customize your Blogger attribution widget.
 

How To Remove Blogger Attribution Gadget/Widget :

By default, the Blogger attribution widget is locked, so we can't remove it. To remove the attribution widget, we have to unlock it first. In this post, I'm explaining how to unlock the attribution widget and remove it from your Blogger blog.

Follow below steps to remove Blogger attribution gadget/widget

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Template

Step 3 : Click on Edit HTML

Step 4 : Search for the following tag

              <b:widget id='Attribution1' locked='true' title='' type='Attribution'>

               And change locked='true' to locked='false'

               And then click on Save template

Step 5 : Then go to Layout, click on "Edit" corresponding to attribution widget and click on "Remove" to remove the gadget.

Remove Space Between Posts in Blogger

By default empty space is there between posts in Blogger blog. If your blog has more space between posts then we can decrease that white space. We can decrease and increase space between posts in Blogger blog.

Follow below steps to remove space between posts in Blogger blog

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Template and click on Customise

Step 3 : Click on Advanced button and click on Add CSS

Step 4 :  Add below CSS code to your blog

.date-outer{
margin-bottom: -50px;
}

Step 5 : Click on Apply to blog.

how To Remove Image Border in Blogger

Removing image/picture border:
The images in Blogger have borders and shadows by default, but you can remove them if you prefer. The process of removing the border of a Blogger image is simple.

How To Remove The Image Border in Blogger Blog:

We can remove the image border at the time of adding an image to a Blogger blog or after adding it. It is easy to remove borders around all images on your Blogger. By changing the border value of images in your Blogger template, you can remove all image borders at once without removing them manually. You can also remove the image border on a specific blog post manually.
 

Follow below steps to remove all image borders in Blogger 

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Template

Step 3 : Click on Edit template.

Step 4 : Search for ".post-body img {" in your Blogger template code.

You will see  border: 1px solid $(image.border.color);   below that line

Replace "1px" with "0px" in the above line to set the border of all images to zero.

Note: If you can't find the exact border tag, you can simply add a new line with "border: 0px;" to remove the border around the images.

Step 5 : Click on Save Template

Now, go and check the images on your Blogger blog. You should not see borders around images on your Blogger blog after making the above changes.

Follow below steps to remove the particular image border in blogger

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Posts

Step 3 : Open the blog post that contains the image and switch to HTML mode.

Step 4 : On the image code, set the border attribute value to "0", i.e. border="0".

Step 5 : Click on Update

Like this, we can also remove the shadow around images in a Blogger blog.

Align Blog Title and Description in Blogger

How to align blog title and description in Blogger:

We can align both the blog title and description in Blogger. With this alignment, we can change the position of the Blogger title text and description to either left, right or center.

Follow below steps to align blog title and description in Blogger

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Template

Step 3 : Click on Edit html

Step 4 : Search below code

.header-inner .Header .titlewrapper,
.header-inner .Header .descriptionwrapper {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
}

To align the blog title and description, add the following code before the } tag in the above code:

  text-align: Center;

Then the new code after the change is as follows:

.header-inner .Header .titlewrapper,
.header-inner .Header .descriptionwrapper {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
text-align: Center;
}

Step 5 : Click on Save Template.

Center Sidebar Widget Titles in Blogger

How to Center Sidebar widget Titles in Blogger :

We can change only the widget titles' alignment without affecting the widget links or information. With a simple code, we can center all sidebar widget titles in a Blogger blog.

Follow below steps to center sidebar widget titles in Blogger blog

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Template

Step 3 : Click on the "Customize" button. Under the customize menu, click on the "Advanced" tab.

Step 4 : Click on add CSS under Advanced options

Add the below CSS code to the CSS box

 .sidebar h2 {text-align:center !important;}

Step 5 : Click on Apply to blog

You can also change the title alignment to either right or left.

Center Sidebar Widgets in Blogger

How to center all sidebar widgets in Blogger:

This post will help you center all sidebar widgets in your Blogger blog. Note that only the widgets in your blog sidebar will align to the center with the simple CSS code, and other widgets may not change their alignment.

Follow below steps to center sidebar widgets in Blogger

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Template

Step 3 : Click on Customise button under Customise click on Advanced tab

Step 4 : Click on add CSS under Advanced options

Add below CSS code to your Blogger blog

.sidebar .widget {
  text-align: center;
}

Step 5 : Click on Apply to blog

Center All Widgets in Blogger

How to center all widgets in Blogger blog:

We can change widget alignment in a Blogger blog easily. With a simple CSS code, we can center all gadgets in your Blogger blog.

Follow below steps to center all widgets in your Blogger blog

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Template

Step 3 : Click on the "Customize" button. Under the customize menu, click on the "Advanced" tab.

Step 4 : Click on Add CSS under Advanced options

Add the below CSS code to the CSS box

.widget {
  text-align: center;
}
 
Step 5 : Click on Apply to blog

You can also change the text alignment to the right or left using CSS code in your Blogger blog.

Add a Background Image to Gadgets in Blogger Sidebar

Background Image to Blogger Sidebar Gadgets :
You can add same background image to all sidebar widgets on your Blogger blog. We have already discussed adding background color to a widget and to your Blogger sidebar. Now I'm going to discuss adding background image to your Blogger sidebar widgets. You can also add a specific background image to a specific widget on your blog.

How to Add a Background Image to All Gadgets in Your Blogger Sidebar:

With a simple CSS code, we can add a background image to all gadgets in your Blogger blog. There are two methods to add this code to your Blogger. The first method is adding it through Blogger Template Designer, and the second method is adding it directly to your Blogger template code. Here, I'm showing you the first method.

Follow below steps to Add a Background Image to Gadgets in Blogger

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Template

Step 3 : Click on the "Customize" button. Under the customize menu, click on the "Advanced" tab.

Step 4 : Click on Add CSS under Advanced options

Add the below CSS code to the CSS box:

.sidebar .widget {
background:url('your background image URL')repeat;
}

Step 5 : Click on Apply to blog


Note: To prevent the image from repeating, replace "repeat" with "no-repeat" in the above code.

Add a Background Image to Gadgets in Blogger

How to Add a Background Image to Gadgets/Widgets in Blogger:

We can add background images to Blogger gadgets/widgets. We can add unique images to different gadgets in Blogger. With the help of a small CSS code, you can add a background image.

Follow below steps to add a  background image to widgets/gadgets in Blogger

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Template

Step 3 : Click on the Customize button. Under Customize, click on Advanced.

Step 4 : Click on "Add CSS" under "Advanced" options.

Add below CSS code to your blogger blog

#widget id1{
background: url(IMAGE URL) no-repeat;
}

Replace 'widget id1' in the above code with the ID of the widget to which you want to apply a background image. You can find the widget ID in the HTML code of your blog's layout.

To add a unique Background Images to Gadgets in Blogger


#widget id1{
background: URL(IMAGE URL) no-repeat;
}
#widget id2{
background:url(IMAGE URL) no-repeat;
}
#widget id3{
background: url(IMAGE URL) no-repeat;
}

Step 5 : Click on Apply to blog

That's it! You can easily add a specific background image to a specific widget on your Blogger blog using this method.

Change Sidebar Background Color in Blogger

Blogger sidebar background color:
By default, Blogger blog sidebars appear without a background color. In Blogger, we can add a separate background color to widgets. You can add a background color to your Blogger sidebars and customize them by adding borders. You can also add a background image to a Blogger sidebar. In this post, I am going to show you how to change the background color of your Blogger blog sidebar.

How to change sidebar background color in Blogger:

It is easy to change the background color of a Blogger blog sidebar. There are many ways to do this, but one of the simplest ways is through the Blogger Template Designer.

Follow bellow steps to change sidebar background color in Blogger

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Template and click on Customise.

Step 3 : Click on Advanced tab

Step 4 :Click on "Sidebar Background". Now, on the right side, you can see different background colors. Select any Background color.

Step 5 : Click on Apply to blog.

Change Widget Background Color in Blogger

Widget background color:
You can change the background color of your Blogger widgets. By default, there is no background color on Gadgets on your Blogger, but you can set any background color. You can customize your blog widgets easily in Blogger. Not only the background color, but you can also change the border color of a widget, and you can also add a background color to widget titles.

How to change widget background and border color in Blogger:

 It is easy to change the background color and border color of your Blogger widgets. There are two methods to change widget background colors. You can change the widget background through the Template Designer, or you can edit the Blogger template code. In this post, I'm going to show you how to change the background color of your Blogger widgets.

Follow bellow steps to change widget background and border color in Blogger

Step 1 : go to Blogger Dashboard

Step 2 : click on Template and click on Customise button.

Step 3 : Click on Advanced button

Step 4 : Click on Gadget Background, on right side you can see different background and border colors.

Now choose background and border color by click on colors under Background and Border colors


Step 5 :  Click on Apply to blog


That's it! Now, go to your Blogger blog and check the widget background color.

Change Widget Links Color in Blogger

How to Change widget links color in Blogger:

Widget links refer to the links displayed in the widget window, such as the posts shown in a popular posts widget. In Blogger, we have the option to change the color of widget links. With just one click, we can change the color of all widget links on our blog.

Follow bellow steps to to change widget links color in Blogger

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Template and click on Customise.

Step 3 : Click on Advance tab

Step 4 : Click on Gadget links ,on right side you can see link color .

            Select link color.

Step 5 :  Click on Apply to blog.

Change Widget Title Font and Text Color in Blogger

How to change widget title font and text color in Blogger :

We can simply change the font and text color of gadget titles in Blogger without adding CSS code to the blog or changing the template code.

Follow bellow steps to change gadget title font and text color in Blogger blog

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Template and Click on customise.

Step 3 : Click on Advance Tab

Step 4 : Click on Gadget Title

Step 5 : Select font and text color and then click on Apply to blog

Change Widget Text Font and Text Color in Blogger

How to change widget text font and text color in Blogger:

We can change the font and color of widget text in a Blogger blog. With a single click, we can change the font and color of all widgets text in Blogger. We can also increase the size of the widget text.

Follow bellow steps to to change widget text font and text color in Blogger

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Template and Click on Customise.

Step 3 : Click on Advance tab

Step 4 : Click on "Gadget Text", on the right side you can see different font and text colors. Select the desired font and text color.

To increase the text size, click on the down arrow under font options, which is located to the right side of bold and italic. Then, scroll down and select any size.

Step 5 :  Click on Apply to blog



Find blogger post id

Blogger blog post id :
Each blog in Blogger has a unique ID number, and similarly, each post has its own unique ID number as well. In the previous post, we discussed how to find your Blogger blog ID. Now, we will talk about how to find your Blogger blog post ID.

Knowing the post ID can help us apply different CSS styles to specific blog posts on your Blogger blog. Therefore, it can be useful for customizing specific blog posts.

How to find post ID in Blogger:

It's very simple to find a specific blog post ID on your Blogger blog. Just log in to your Blogger account, click on Posts, and then click on the Edit button located below the blog post you want to find the ID for. The post ID will then appear on your browser's address bar.

Follow below steps to find out post ID in Blogger

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Posts

Step 3 : Click on Edit button corresponding to your blog post

Step 4 : Now you will enter the post editor mode.

Step 5 : Check the blog post ID after the Blogger blog ID on your browser's address bar.

With this simple step, you can easily find the ID of any blog post on your Blogger blog.

Find Blogger Widget and Section ID

Widget Id and Section Id : Every widget on your Blogger blog has its own unique widget ID and section ID. These IDs can be useful in customizing the widgets on your blog. While it's easy to customize all sidebar or footer widgets at once through the Blogger template customizer, you can't change a specific widget on the sidebar or footer using this option.

To customize a specific widget on your Blogger blog, you need to first find out its widget ID and then add CSS code like the following to your blog:

#WidgetID {
  /* CSS code here */
}

Replacing "WidgetID" with the ID of the specific widget you want to customize.

Like this, you can easily customize your Blogger widgets as you like. So, to customize a specific widget on your Blogger, it requires a widget id. In this post, we are going to discuss finding a widget id and section id in Blogger. Later, we will discuss how to customize a Blogger widget with a widget id.

How to Find Blogger blog widget ID and Section ID:

It is easy to find out the widget id and section id of your Blogger blog. You don't need to go to your Blogger template and search for the widget id and section id. Just click on the "Edit" button of your widget on your Blogger layout and you will see the widget id and section id on your browser.

Follow below steps to find out  Blogger Widget ID and Section ID


Step 1 : Go to Blogger Dashboard

Step 2 : Click on Layout

Step 3 : Click on "Edit" next to the widget you want to edit.

Step 4 : Now a widget configuration window will open, showing the widget id and 

section id.

Step 5 : In that window, you can see "Widget id=your Widget Id" and "Section Id: Widget section Id" on the address bar.

Using this simple technique, you can find out the widget ID and section ID of any widget on your Blogger blog. Like this you can also find out Blogger blog id and Blogger post id .

Install StatCounter in Blogger Dynamic Views

How to Install StatCounter in Blogger Dynamic Views:

Gadgets are not available in Blogger Dynamic Views. So, it is difficult to add third-party code to a blog in dynamic views. To install StatCounter in Blogger Dynamic Views, we have to add StatCounter code to the template code.

Follow below steps to install StatCounter in blogger dynamic views

Step 1 : Visit the StatCounter website and sign up.

Step 2 : Click on Create Account button and provide your blog details

Step 3 : Click on Add project button and copy StatCounter code of your blog

Step 4 : Go to BloggerDashboard and Click on Template

Step 5 :  Click on Edit html and paste StatCounter code before </body> tag and Click on Save Template.

Add StatCounter to Blogger

How to Add StatCounter to Blogger Blog:

StatCounter is a web analytics service that provides detailed information about visitors to your website or blog, including pageviews, unique visits, time on site, and more. By adding StatCounter to your Blogger blog, you can track and analyze your blog's traffic, and use the data to optimize your content and improve your blog's performance. StatCounter also provides a range of tools and features, including customizable reports, real-time visitor maps, and email alerts, to help you monitor and analyze your blog's traffic.

Follow below steps to add StatCounter to your blogger blog

Step 1 : Visit the StatCounter website and sign up.

Step 2 : Click on Create Account button

Step 3 : Provide your web site details

Step 4 : Click on Add project button

Step 5 : Copy the StatCounter code for your website and paste it in the HTML/JavaScript gadget on your blog.

Like Statcounter, many other services are also available. See below.
  • feedjit
  • Sitemeter
  • Easycounter
  • Gostats
  • Histats

Change Label Names in Blogger blog

How to Change Label Names in Blogger Blog :

In Blogger blogs, we cannot change the label names directly as there is no label edit option available. To rename or change label names in a Blogger blog, we first need to select the posts containing the label name that we want to change. Then, we need to delete that label and add a new label for those posts.

Follow below steps change label names in Blogger blog

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Posts

Step 3 : Click on the "All labels" drop-down menu and select the label that you want to change.

Step 4 : Select all posts that have the label name you want to change, then click on the label icon and select the label name you want to delete.

Step 5 : Now click on the label icon and select "Add new label" from the drop-down menu, then give it a new label name. The label name has now been changed.

Add a Google Sitemap to Blogger Blog

Submitting sitemap to Blogger :
Sitemaps play a major role in SEO. Search engines use sitemaps to find the pages on your Blogger blog. By adding a Google sitemap to your Blogger blog, you don't need to ping your blog manually whenever you update it. Submitting your Blogger blog sitemap to Google Webmaster Tools is important, and submitting a sitemap to Blogger is also important. It helps search engines discover pages that the search engine bot may have missed.

How to Add a Google Sitemap to your Blogger Blog:

It is easy to add a Google sitemap to Blogger blogs. First, generate your blogger sitemap from trusted sitemap generator sites, or just replace 'yourblogname' with your Blogger blog URL in the code on step 4. We have already discussed how to add your blog sitemap to your Google Webmaster Tool. Now, in this post, we are going to discuss adding a Google sitemap to your Blogger blog.

Follow below steps to add a Google sitemap to your Blogger blog

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Settings and Click on Search Preferences

Step 3 : Click on edit custom robots.txt under Crawlers and indexing

Step 4 : Paste below code in custom robots.txt box

User-agent: *
Disallow: /search
Allow: /
Sitemap: http://yourblogname.blogspot.com/atom.xml?redirect=false&start-index=1&max-results=500
Sitemap: http://yourblogname.blogspot.com/atom.xml?redirect=false&start-index=501&max-results=500
Sitemap: http://yourblogname.blogspot.com/atom.xml?redirect=false&start-index=1001&max-results=500
Sitemap: http://yourblogname.blogspot.com/atom.xml?redirect=false&start-index=1501&max-results=500
Sitemap: http://yourblogname.blogspot.com/atom.xml?redirect=false&start-index=2001&max-results=500
Sitemap: http://yourblogname.blogspot.com/atom.xml?redirect=false&start-index=2501&max-results=500
Sitemap: http://yourblogname.blogspot.com/atom.xml?redirect=false&start-index=3001&max-results=500

Step 5 : Click on Save changes.

Like this you can add Google sitemap to your Blogger.

Note : If your Blogger blog contains below 500 posts, then add only sitemap.: http://yourblogname.blogspot.com/atom.xml?redirect=false&start-index=1&max-results=500.
 
 If your Blogger blog contains more than 500 and below 1000 posts, then add the following two lines of code and there is no need to add the remaining code.

Sitemap: http://yourblogname.blogspot.com/atom.xml?redirect=false&start-index=1&max-results=500
Sitemap: http://yourblogname.blogspot.com/atom.xml?redirect=false&start-index=501&max-results=500

Like this, add Google sitemap to your Blogger blog properly.

Backup All Blogger Blogs Using Google Takeout

Google Takeout:
With Google Takeout, we can back up all data from Google products, including our Blogger blogs. While we can also use the Backup option on Blogger to backup our blog, Google Takeout is the best way to backup all of our Blogger blogs at once. In this post, we will discuss how to backup our Blogger blogs with Google Takeout, after discussing how to backup a Blogger blog using the Backup option on Blogger.

How to Backup all your Blogger Blogs Using Google Takeout :

It is easy to backup all Blogger blogs using Google Takeout. Simply log in to Google Takeout and select Blogger to create a backup. With Google Takeout, you can also delete all Blogger blogs at once. Google Takeout is a service where you can manage all your Google products.

Follow below steps to Backup all your Blogger Blogs Using Google Takeout

Step 1 : Go to Google.com/takeout and log in with your Blogger account
             
Step 2 : Select the Blogger option only.

Step 3 : Click on Next

Step 4 : Select file format and Click on Create archive

Step 5 : Click on Download button .

Now you have a backup of all your Blogger blogs. The backup file will be sent to your Gmail. Go to Gmail, open the email, and then click on the "Download archive" button. You can use Google Takeout to backup any Google product, such as Gmail, Hangouts, etc.

Remove Comment Box From a Page in Blogger

If you enable comments on your Blogger blog, the comments box will also appear on pages in your blog. By default, the comments box will appear below all posts and static pages on your Blogger blog. However, it is better to remove or disable the comments box on static pages on your Blogger blog, such as the Contact Us page. In this post, we will discuss how to remove the comment box on a static page from your Blogger blog, and later we will discuss how to remove the comment box on a blog post.

How to remove comment box from a page in Blogger:

It is simple to remove/disable the comment box from a static page on your Blogger. Go to "Page Settings" on your Blogger and choose "Don't allow, hide existing" option under "Reader comments" to disable the comment box on a static page.

Follow below steps to remove comment box from a page in your Blogger blog.

Step 1 : Go to Blogger dashboard

Step 2 : Click on "Edit" corresponding to the page

Step 3 : Click on the Options button on the right-hand side.

Step 4 : Select "Don't allow, hide existing" option and click on "Done".

Step 5 :  Click on "Update" and then click on the "Publish" button.

With these steps, you can remove or disable the comment box on any static page on your Blogger.

Create More Than 20 Static Pages in Blogger blog

How to Create More Than 20 Static Pages in Blogger blog:

Generally, we can create up to 20 pages in a Blogger blog. After creating 20 pages, it will be difficult to create another page in Blogger. If you want to create more than 20 pages, this post will help you.

Follow below steps to create more than 20 static pages in blogger blog

Step 1 : Go to Blogger dashboard

Step 2 : Click on Pages and create 20 pages

Step 3 : Click on "Edit" corresponding to "Page 1," and copy the page URL. Save it, and then delete "Page 1."

Note: Save page 1 URL link in note pad before deleting 

Step 4 : Now create another page, which will be the 21st page. Now your blog will have pages 2 to 21.

Step 5 : Now paste the Page 1 URL link in a new tab in your browser and click on "Publish."

Your deleted page will now come back, allowing you to create 21 pages. By following these steps, you can create more pages in your Blogger blog.

Note: It's recommended to try this on an empty page.

Create Contact Form For Blogger With Google Drive

Creating contact us page with Google drive :
Contact us page is important for all blogs/websites. Blogger provides a contact us widget to add a contact form to Blogger blogs. It is easy to add a contact us page to Blogger on the Blogger widget area, but for newbies, it may be hard to add a contact us form to static pages on their Blogger blog.

We have already discussed how to add a contact form to your Blogger blog with the Blogger contact us widget. Now, we will discuss creating and adding a contact form to your Blogger blog page with Google Drive.

How to create contact form for your Blogger blog with Google drive:

 It is easy to create a contact us form for your Blogger blog with Google Drive. Google Drive is a Google product, so it is trusted and more secure. Go to Google Drive, create a contact form, get the contact form from Google Drive, and finally, add that code to your Blogger blog.

Follow below steps to create contact form for Blogger with Google drive:

Step 1 : Go to Google Drive and log in with Gmail account.

Step 2 : Click on Create button and then click on Form

Step 3 : A new window will open. Enter your title as Contact us and choose the default theme, then click on OK.
  
Step 4 :  A default form will be created. Now, enter the question title as "Name" and select the question type as "Text". Tick on the "Required question" box and then press the "Done" button. To add more fields like email, website, and message, simply press the "Add item" button and add the questions.

Step 5 : Click on the "Send form" button after completing the form customization. Then, click on the "Embed" button and copy the iframe code, and save it in a notepad. Finally, click on the "Done" button.

Follow below steps to get form notifications :

To get notifications (responses after filling contact forms), do something like below:
   
Step 1 : Click on choose response destination button .

Step 2 : A pop up window will open, Select new spreadsheet option and click on create button.

Step 3 : Click on View responses button

Step 4 : Now, a popup window will open. Click on the 'Tools' menu and select 'Notification rules'..

Step 5 : Again, a popup window will open. Tick on "A user submits a form" and "Email - right away" options under the "Notification rules" section, then press the "Save" button.

Follow below steps to add Google drive form embed code to your Blogger blog :

Step 1 : Go to Blogger Dashboard

Step 2 : Click on Pages

Step 3 : Click on New page

Step 4 : Switch to HTML mode and paste the contact form embed code which you got from Google Drive.

Step 5 : Click on Publish

Now visit your blog once and click on the contact page to see your contact form. With this method, you can add a contact form to any Blogger.

"Privacy Policy"


 What information do we collect?

We collect information from you when you register on our site or subscribe to our newsletter.

When ordering or registering on our site, as appropriate, you may be asked to enter your: name or e-mail address. You may, however, visit our site anonymously.

What do we use your information for?

Any of the information we collect from you may be used in one of the following ways:

; To personalize your experience
(your information helps us to better respond to your individual needs)

Do we use cookies?

We do not use cookies.

Do we disclose any information to outside parties?

We do not sell, trade, or otherwise transfer to outside parties your personally identifiable information. This does not include trusted third parties who assist us in operating our website, conducting our business, or servicing you, so long as those parties agree to keep this information confidential. We may also release your information when we believe release is appropriate to comply with the law, enforce our site policies, or protect ours or others rights, property, or safety. However, non-personally identifiable visitor information may be provided to other parties for marketing, advertising, or other uses.

Third party links

Occasionally, at our discretion, we may include or offer third party products or services on our website. These third party sites have separate and independent privacy policies. We therefore have no responsibility or liability for the content and activities of these linked sites. Nonetheless, we seek to protect the integrity of our site and welcome any feedback about these sites.

Your Consent

By using our site, you consent to our web site privacy policy.

Changes to our Privacy Policy

If we decide to change our privacy policy, we will post those changes on this page.

Contacting Us

If there are any questions regarding this privacy policy you may contact us using the information below.

smartbloggertips.blogspot.com
smartbloggertips@rediffmail.com

This policy is powered by Free Privacy Policy and Rhino Support helpdesk software.

Delete a Facebook Page Permanently

 How To Delete a Facebook page :

If you delete a Facebook page, it will be permanently deleted and you won't be able to reactivate it. Therefore, it's recommended to download any important data or information from the page before deleting it.

Follow the below simple steps to delete a Facebook page.

Step 1 : Log in to your Facebook account

Step 2 : Navigate to your Facebook fan page

Step 3 : Go to admin panel and click on Edit Page

Step 4 : Click on manage permissions on top left side

Step 5 : Click on permanently delete this page button

Delete Your Facebook Account Permanently

How to Delete Your Facebook Account Permanently:

That's correct. Before deleting a Facebook account, you must first deactivate it. Deactivating a Facebook account will temporarily remove it from Facebook and hide your profile, timeline, and other personal information. You can reactivate your account at any time by logging in again.

However, if you choose to delete your Facebook account, it will be permanently deleted and cannot be reactivated. Facebook gives you a grace period of 30 days to change your mind and cancel the deletion request. After that, your account will be permanently deleted along with all its content and data.

Follow below steps to Delete Facebook Account Permanently

Step 1 : Visit https://ssl.facebook.com/help/contact.php?show_form=delete_account

Step 2 : Give Facebook username and password

Step 3 : Click on Delete My Account

Step 4 : Click on Submit

Step 5 : Enter your account Password, Captcha and Click on Ok.