I strongly recommend to make a backup of your template before making any changes.
Adding the Author's Profile Picture / Avatar and Name in Blogger
Step 1. From the Blogger Dashboard, go to Template and click on the Edit HTML button.
Step 2. Click anywhere inside the code area and press the CTRL + F keys to open the search box.
Paste the following code inside the search box and hit Enter to find it:
<span class='post-author vcard'>Just below this line, you should see the rest of code which should look something like this:
<span class='post-author vcard'>Note: If you are using a modified template, it could look something like this:
<b:if cond='data:top.showAuthor'>
<b:if cond='data:post.authorProfileUrl'>
<span class='fn' itemprop='author' itemscope='itemscope' itemtype='h'>
<meta expr:content='data:post.authorProfileUrl' itemprop='url'/>
<a expr:href='data:post.authorProfileUrl' rel='author' title='author profile'>
<span itemprop='name'><data:post.author/></span>
</a>
</span>
<b:else/>
<span class='fn' itemprop='author' itemscope='itemscope' itemtype=''>
<span itemprop='name'><data:post.author/></span>
</span>
</b:if>
</b:if>
</span>
<span class='post-author vcard'>Step 3. Now that you found the code, delete it. Pay attention that it should start and end with the tags marked in yellow. This code is repeated two times, so you need to replace it two times.
<b:if cond='data:top.showAuthor'>
<data:top.authorLabel/>
<span class='fn'><data:post.author/>
</span>
</b:if>
</span>
Step 4. Next, search for this line (you'll find it twice and you should stop at the second one):
<div class='post-header-line-1'/>Step 5. Just below it, paste the following code:
<span class='post-author vcard'>Replace the AuthorName text with the EXACT name that appears on the Blogger profile, i.e., the one that appears in the posts or comments. If it is added in a different way, Blogger will not recognize the username, nor the image and the code will not work.
<b:if cond='data:post.author == "AuthorName"'>
<span class='author'><a href='Author-Profile-URL'><img src='Author-Image-URL'/></a></span>
</b:if>
<b:if cond='data:top.showAuthor'>
<data:top.authorLabel/>
<b:if cond='data:post.authorProfileUrl'>
<span class='fn'>
<a expr:href='data:post.authorProfileUrl' itemprop='author' rel='author' title='author profile'>
<data:post.author/>
</a>
</span>
<b:else/>
<span class='fn'><data:post.author/></span>
</b:if>
</b:if>
</span>
To display the author's pic, add the URL of the author's Blogger profile and the image URL by replacing the text in blue. I recommend you to use an image with a maximum height of 40px and 40px wide.
Once done, the photo of the author should appear next to the "posted by" text just below the post title.
If you have a blog with more than one author, add a code like the one below, just above <b:if cond='data:top.showAuthor'>
Step 6. Now let's go ahead and add the CSS styles - search for the ]]></b:skin> tag and just above it, paste the following code:
Step 7. Click on the Save template button and now you should see the profile picture and name of the Blogger author below the title of each post.
Once done, the photo of the author should appear next to the "posted by" text just below the post title.
If you have a blog with more than one author, add a code like the one below, just above <b:if cond='data:top.showAuthor'>
<b:if cond='data:post.author == "AuthorName2"'>If you have more than two authors, repeat this block of code for each author that you want to add.
<span class='author'><a href='Author2-Profile-URL'><img src='Author2-Image-URL'/></a></span>
</b:if>
Step 6. Now let's go ahead and add the CSS styles - search for the ]]></b:skin> tag and just above it, paste the following code:
.author img{... to change the size of avatar, increase/decrease the 35px values.
float: left;
border: 1px solid #FFFFFF;
border-radius: 5px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
margin: 0px 5px 10px 0px;
width:35px;
height:35px;
}
.post-author{
color:#777;
font-size: 13px;
}
.post-author a {
color:#777;
margin-top: 10px;
}
Step 7. Click on the Save template button and now you should see the profile picture and name of the Blogger author below the title of each post.
In
NICE
ReplyDelete