Thursday, January 7, 2021

How to recover permanently deleted blogger blog?

1. You CANNOT recover permanently deleted blog in Blogger.

2. The work around is to go to Internet Archive and find the old copy of your blog.

Thursday, December 24, 2020

How do I report the blog that copy my content?

1. Go to https://www.blogger.com/report

2. Click Report Content and fill out the form.

Sunday, June 7, 2020

How to add or change the favicon of my blog?

1. Click on Settings
2. Under Basic, click on Favicon
3. Click Choose file button, then select the favicon file on your computer. 
4. Click Save button.

Saturday, February 23, 2019

How can I remove "There's nothing here" on the blog that use Contempo theme?

1. Create a post with no title and nothing in the body then publish it.
2. Goto Layout->Edit the Blog Post Gadget 
     - Change Post page link text: to a full stop (.)
     - Take out all check mark in the box
     - Click Save and Save arrangement
3. View your blog

How can I remove or disable the hamburger menu and the sidebar from the blog that use Contempo theme?

1. Go to Blogger.com > Theme > Customize
2. Choose Advanced > Add CSS
3. Add the code below into the box
.hamburger-menu {
    visibility: hidden;
}4. Click Apply to Blog

Saturday, March 3, 2018

How can I set the default format on Dynamic View theme and remove the menu option to change the format?

You can change the default format and remove the menu option to change the format.

1. Log in to Blogger.com
2. Click Theme->Customize->Theme->Select Dynamic View on the top and then the format that you want below the Dynamic View.
3. Click Apply to Blog->Back to Blogger
4. Click Theme->Edit HTML
5. Find the code below: (it should be around line#1637-1641)

<script language='javascript' type='text/javascript'>
  window.onload = function() {
    blogger.ui().configure().view();
  };
</script>

Then add 3 extra lines of code in yellow.

<script language='javascript' type='text/javascript'>
  window.onload = function() {
    blogger.templates().compile(
        blogger.templates().template("Header").raw()
            .replace(/{block:HasViews[\s\S]*block:HasViews}/,""));

    blogger.ui().configure().view();
  };
</script>

5. Click Save Theme and then view your blog.

Friday, February 23, 2018

How to put music or audio player on Blogger?

You just need to add the code below to the blog post in HTML mode or paste in the HTML/Javascript gadget. Replace url-of-audio-file with your audio file's url. You can host your audio file on Google Drive or anywhere else.

<audio controls autoplay>
<source src="url-of-audio-file" />
If you cannot see the audio controls, your browser does not support the audio element
</audio>

Wednesday, February 7, 2018

How do I change the size of the image on the home page using Soho theme?

You can adjust the size of the header image by adding the CSS code below by clicking Theme->Customize->Advanced->Add CSS.
body.homepage-view .hero-image.has-image {
    height: 62.5vw;
    max-height: 75vh;
    min-height: 200px;
    width: 100%;
}
Please change the height, max-height, min-height and width to meet your needs. 

Also, adding the code below for post image:
.snippet-thumbnail img {
    width: 100%;
    height: 100%
}
Again, please change the width & height to meet your needs.

After that click Apply to blog.

Tuesday, February 6, 2018

How to show full post on the home page using Contempo theme?

1. Log in to Blogger.com
2. Click Layout then click at pencil icon of the Featured Post gadget.
3. Untick Show Featured Post then click Save
4. Click at pencil icon of the Popular Posts gadget.
5. Untick Show Popular Posts then click Save
6. Click Theme->Edit HTML
7. Scroll down to line 3578 then remove the code below.
<b:if cond='data:view.isSingleItem'>
    <b:include data='post' name='postBody'/>
<b:else/>
    <b:include data='post' name='postBodySnippet'/>
    <b:include data='post' name='postJumpLink'/>
</b:if>
After that, please paste the code below.
<b:if cond='data:view.isSingleItem'>
    <b:include data='post' name='postBody'/>
<b:else/>
    <b:include data='post' name='postBody'/>
</b:if>
8. Click Save theme
9. Then goto Theme->Customize->Advanced->Add CSS
10. Paste the code below into Add custom CSS box
.jump-link {
    display: none;
}
11. Click Apply to blog

P.S. If you have page break (grey line with dash) in the post, please remove it first.

Saturday, February 3, 2018

How to insert photos from Google Photos?

2. Click +New album.
3. Select the photos that you want to insert into the blog.
4. When finish, click Create at the top right.
5. Enter the name of your album (e.g. My Blogger Photo Album).
6. When finish, click check mark at the top left.
7. Go to Blogger.com
8. Create new or edit old post.
9. Click Insert image button (next to Link).
10. Select From Google Album Archive.
11. Click to open the album (which you named in step 5).
12. Select the photo that you want to insert.
13. Click Add selected.

Sunday, January 21, 2018

How do I remove the attribution line at the bottom of the blog?

In order to remove the attribution line at the bottom, please:
1. Log into Blogger.com
2. Click Theme->Customize->Advanced->Add CSS
3. Add the code below into the box.
#Attribution1 {display: none;}
4. Click Apply to blog

How do I remove Subscribe to Post (Atom) from the bottom of Blogger's post?

1. Log into Blogger.com
2. Click Theme->Customize->Advanced->Add CSS
3. Add the code below into the box.
.feed-links {
display:none !important;
}
4. Click Apply to blog