Showing posts with label blogger tips. Show all posts
Showing posts with label blogger tips. Show all posts

How To Customize Blogger Comment Link




We shared many blogger customization tips and tricks here in this blog. Today we will discuss about customizing Blogger comment link. You can change the text and look of the blogger comment link that appears below every posts on blogger homepage. I am talking about the comment link that has been shown below in the snapshot.


The customization will give your blog a professional look. Backup your template before applying any customization. Here goes the complete step for customizing the blogger comment link:-

1) Log in to Blogger account.

2) Go to your Blogger Dashboard > Template >Edit HTML and tick the "Expand Widget Templates" checkbox.

3) Now press (CTRL+F) to find the piece of code (marked in red):


<span class='post-comment-link'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<b:if cond='data:post.allowComments'>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><b:if cond='data:post.numComments == 1'>1 <data:top.commentLabel/><b:else/><data:post.numComments/> <data:top.commentLabelPlural/></b:if></a>
</b:if>
</b:if>
</span>

Replace this code marked in red with the codes below:-

<b:if cond='data:post.numComments == 0'>
Be the first to reply!
<b:else/>
<b:if cond='data:post.numComments == 1'>
1 <data:commentLabel/> so far. What's your opinion?
<b:else/>
<data:post.numComments/> <data:commentLabelPlural/> so far.

What's your opinion?</b:if>
</b:if>


4) Preview and save the template.


You can also add a comment icon beside the comment link.

Just add small code that is given below:

<img src='URL' style='border:0px'/>

(Replace URL with the actual URL of the icon image)

So that the final code after adding comment icon will be as like given below:

<span class='post-comment-link'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<b:if cond='data:post.allowComments'>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><b:if cond='data:post.numComments == 0'>
Be the first to reply!
<b:else/>
<b:if cond='data:post.numComments == 1'>
1 <data:commentLabel/> so far.
What's your opinion?<b:else/>
<data:post.numComments/> <data:commentLabelPlural/> so far. What are your thoughts?
</b:if>
</b:if> </a>
<img src='URL' style='border:0px'/>
</b:if>
</b:if>
</span>

How To Show Post Excerpts On Blogger Homepage.




Here in this blog we have provided you many tweaks and tips of Blogger. Today we are here again with a different blogger tweak. This post is about how to show post excerpts on homepage instead of full posts. This tweak will show thumbnail of your post and a continue reading link on homepage. Full instruction is given below, follow them.


Steps To Follow :

It is always advisable to backup your template before doing any kind of tweaking in your codes.

1) Log in to your Blogger Account and goto your Blogger Dashboard.

2) Go to Template>Edit HTML>Proceed.

3) Tick the 'expand widgets' box.

4) Press Ctrl+f and Search </head>. Just above the </head> tag, copy and paste the code given below.
<script type='text/javascript'>
var thumbnail_mode = "no-float" ;
summary_noimg = 300;
summary_img = 350;
img_thumb_height = 200;
 img_thumb_width = 300;
</script>
<script type='text/javascript'>
//<![CDATA[
function removeHtmlTag(strx,chop){
if(strx.indexOf("<")!=-1)
{
var s = strx.split("<");
for(var i=0;i<s.length;i++){
if(s[i].indexOf(">")!=-1){
s[i] = s[i].substring(s[i].indexOf(">")+1,s[i].length);
} }
strx = s.join("");
}
chop = (chop < strx.length-1) ? chop : strx.length-2;
while(strx.charAt(chop-1)!=' ' && strx.indexOf(' ',chop)!=-1) chop++;
strx = strx.substring(0,chop-1);
return strx+'...';
}
function createSummaryAndThumb(pID){
var div = document.getElementById(pID);
var imgtag = "";
var img = div.getElementsByTagName("img");
var summ = summary_noimg;
if(img.length>=1) {
imgtag = '<span style="float:left; padding:0px 10px 5px 0px;"><img src="'+img[0].src+'" width="'+img_thumb_width+'px" height="'+img_thumb_height +'px"/></span>';
summ = summary_img;
}
var summary = imgtag + '<div>' + removeHtmlTag(div.innerHTML,summ) + '</div>';
div.innerHTML = summary;
}
//]]>
</script>

5) Now Find the portion of code that looks like the code given below:.

<b:if cond='data:blog.metaDescription == &quot;&quot;'>
 <!-- Then use the post body as the schema.org description, for good G+/FB snippeting. -->
<div class='post-body entry-content' expr:id='&quot;post-body-&quot; + data:post.id' itemprop='description articleBody'>
<data:post.body/>
<div style='clear: both;'/>
<!-- clear for photos floats -->
</div> <b:else/>
<div class='post-body entry-content' expr:id='&quot;post-body-&quot; + data:post.id' itemprop='articleBody'>
<data:post.body/>
<div style='clear: both;'/>
<!-- clear for photos floats -->
</div>
 </b:if>
<b:if cond='data:post.hasJumpLink'>
<div class='jump-link'>
<a expr:href='data:post.url + &quot;#more&quot;' expr:title='data:post.title'>
<data:post.jumpText/></a>
</div>
</b:if>
Replace it with the code given below:

<b:if cond='data:blog.pageType == &quot;item&quot;'>
<style>.fullpost{display:inline;}</style>
<p><data:post.body/></p>
<b:else/>
<style>.fullpost{display:none;}</style>
<b:if cond='data:blog.pageType == &quot;static_page&quot;'>
<data:post.body/>
<b:else/>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<div expr:id='&quot;summary&quot; + data:post.id'>
<data:post.body/></div>
<script type='text/javascript'>createSummaryAndThumb(&quot;summary<data:post.id/>&quot;); </script> <span class='rmlink' style='float:right;padding-top:20px;'><a expr:href='data:post.url'> continue reading &quot;<data:post.title/>&quot;</a></span> </b:if>
<b:if cond='data:blog.pageType == &quot;item&quot;'><data:post.body/></b:if> </b:if>
<b:if cond='data:blog.pageType == &quot;static_page&quot;'><b:else/>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<div style='padding-top:3px;float:right;text-align:right;'><span class='rmlink'><a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick' style='margin-right:10px;'>Add Your Opinion</a></span><span class='rmlink'><b:if cond='data:blog.pageType != &quot;item&quot;'> <b:if cond='data:post.allowComments'><a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><b:if cond='data:post.numComments == 1'>1 Opinion<b:else/><data:post.numComments/> Opinions </b:if></a> </b:if> </b:if></span>
<div style='clear: both;'/>
<div style='clear: both;'/>
</div>
</b:if>
</b:if>
</b:if>

You can change the continue reading "<data:post.title/>" to any text (for example, READ MORE, Full story etc.).

6) For Styling part i.e for CSS part:-

Search ]]></b:skin> and above it paste the following code

.rmlink a{color:#fff; text-decoration:none; float:right; font-family:Arial,Helvetica,sans-serif; padding-left:5px; padding-right:5px; padding-top:-2px; font-size:13px; font-weight:bold; text-align:center; background:#444343; -moz-border-radius:5px; -webkit-border-radius:5px; height:22px} .rmlink a:hover{color:#FFF; text-decoration:none; background:#007EC4; -moz-border-radius:5px; -webkit-border-radius:5px}

7) And finally save the template.

You are all done and now check your blog. Drop comment if finding any kind of problem.
For more Blogger tips and tricks, browse this blog. Keep visiting this blog for more updates.

How To Add Code Box Area In Blogger Posts




It is good to have a code box area in your blogger posts if your blog is about blogger tutorials, blogger widgets, blogger templates or it deals with any kind of blog customization. It will become easy for anybody to locate the html code and easily copy and paste the code for using it. It will also give a well organised look to your blog posts. Just read and follow all the steps given below to get this function in your blogger blog for each post.

Read more »

Creating Sitemap Page In Your Blogger Blog




You need to submit your sitemap to popular search engines to make your blog pages index by them. Sitemap page in a blog helps the visitors to track the contents of that blog. You have seen sitemap pages in many blogs. Have you thought of creating a sitemap page in blogger blog? Yeah it is possible.This tutorial will help you in creating a sitemap page in your blogger blog.


Steps To Create A Sitemap Page In Your Blogger Blog:-


1) Go to Edit HTML section of your blogger dashboard. Check Expand Template Widget.

2) Ctrl + F and search </head>
 
Read more »

Numbered Page Navigation For Blogger




You have notice numbered page navigation in many blogs. This feature is not provided by blogger blogs. Instead blogger blogs provides older posts and previous posts links. Numbered page navigation not only helps in improving the look of the blogger blog, it also helps in faster navigation to older posts .  This tutorial will help you in incorporating numbered page navigation in blogger blog.






Read more »

How To Remove 'Showing Post With Label' Message From Blogger




In Blogger when any labels link is open we notice a message "Showing Posts with labels XXXXXXX" above the posts. Its looks very irritating and most of you dont want it to appear in your blogger blog. It just looks like the picture given below.



I am sharing a easy trick to completely remove this message from your blog.



Read more »

How To Remove 'Subscribe to: Posts (Atom)' Link From Blogger




If you notice carefully there is a link 'Subscribe to: Posts (Atom)' on every pages of blogger below your posts.


If you dont want it to show up in your blog then follow the following steps given below.


Steps To Remove 'Subscribe to: Posts (Atom)' Link From Blogger


1--> Login to your Blogger Account.

2--> Go to Blogger Admin Page > Template > Click on Edit HTML.

Read more »

How To Stop Your Blog Posts From Being Copied




Being blogger it hurts a lot when your work i.e your blog posts are copied by some other fellows and they post it in their blogs same to same without altering any of the words. What will you do to stop others from doing this? Today I am going to tell you how to disable copy and paste from your blog.

Instructions To Follow To Stop Your Blog Posts From Being Copied :-

1--> Login to your Blogger Account.

2--> Go to Blogger Admin Page > Template > Click on Edit HTML.

Read more »

Placing Labels Under Post Title In Blogger




Labels or Categories list related articles or posts. Visitors eyes gonna catch easily to your Labels link if you place your blogs Labels link just below your post title. So by placing Labels just below the post title will help your blog visitors to see and read related articles. 



This Tutorial will help you to place the Labels just below your post title


Read more »

Customizing Read More Link In Blogger




This tutorial will gonna help you to customize your read more link in your Blogger. Showing summaries of your blog posts in your homepage is always a good idea since showing full post of your recent post will gonna occupy a large space and your readers would have to scroll to see your below posts.






Read more »

Adding Related Posts Below Blog Posts In Blogger




How about adding Related Posts below your blog posts? Advantage of adding Related Posts below your blog post is that your readers may find some of your Related Posts interesting and click on the link to read the post, thus your readers stay time on your blog increases and thereby increases your pageviews. So this tutorial will help you to add Related Posts below your blog posts.

Steps Of  Adding Related Posts Below Blog Posts In Blogger:--

1--> Login to your Blogger Account.

2--> Go to Blogger Admin Page > Template > Click on Edit HTML.


Read more »

How To Create A New Page In Blogger




Blogger is a popular blog-publishing service powered by Google. To know how to create a blog in Blogger, read my post - How To Create A Blog In Blogger. Many of you are preferring Blogger over many other blog publishing services available online. This is because of  rapidly increasing new features in Blogger and  it is free of cost. Some of you created your blog to showcase your writing ability and others to build their business over Internet.



Read more »

How To Submit Blogger Sitemap To Google Webmaster




We all use Google for searching information that we want to know. Google provides us links of webpages that contains the information that we are looking after. If you own a blog then you might be doing everything possible to get more visits to your blog. To get traffics from search engines your blog must be indexed in the respective search engines. Your blog will be indexed in search engine only when you have submitted your blog to that search engine.


Read more »

How To Add A Widget Of Social Media Sharing Buttons




Social networking sites can be a good medium of getting large traffics to your blog. We all use social networking sites to communicate with our friends and we often share our status, thoughts, emotions, photos, links, videos etc with our friends. If a link of your blog is shared  in the social networking sites by somebody then his/her friends will also come to know about your blog. As a blogger you will always be happy if your visitors share link of your blog posts with their friends and followers in social networking sites. A widget which contains group of social media sharing buttons will ease your work a lot and you can allow your visitors with an option of sharing your blog post via this widget.



Read more »

How To Add Meta Tags Description To Blogger Without Editing HTML code




Search Engine Optimization(SEO) is very important if you want to achieve your links of your website higher in the search results in all top search engine websites. Recently Blogger introduced a new feature that will help you in adding meta tag in your blog very easily. In my previous post I talked about how you can add meta tag in your HTML section. To read that post go to How To Add Meta Tag In Blogger . By virtue of this new feature of Blogger you don't have to go to HTML section and play with the HTML codes. We can even include meta description for every single post with the help of this new feature. Now Blogger has Wordpress like feature for using meta tags.





Read more »

How To Add Meta Tag In Blogger




A meta-tag is a code that is found inside html code of any website and contains information about the page. Search Engines used this data to display the search snippet. It will be very helpful for your blog if you add meta tag in your blog's html code because then only search engines can know about your blog contents more exactly and they can show it to all visitors. This is a very good Search Engine Optimization(SEO) technique used by many website or blog owners.

Read more »

How To Install A Blogger Template




There are only few templates that are provided officially by Blogger. You can find a large number of blogs using same blog template. To avoid your blog just don't look like any other blog, it is advisable to use template other than that are provided by Blogger. But where you will get different template that doesn't look like the template provided by Blogger. If you know HTML/CSS coding then you can make your own template. If you dont have HTML knowledge to manually customize your template then what will you do. Okay here is the solution. You can always download templates from websites that provides free Blogger template services. Search for the best template that suits your needs and right for your blog and use it in your Blogger.




Read more »

How To Add Floating Social Media Buttons




We all know that how much social media influences our daily life. Social media can be a good way in the promotion of any blog or website. Adding social media plugins or widgets can be a great helping tool in the success of any blog or website. Floating social media button is one of the widget that you can add in your blog. Floating social media button is a very popular widget that I guess you have notice in many blogs. It looks just like the screenshot given below. Floating Social Media Buttons is a great looking widget that you can also incorporate in your Blogger blogs.


Read more »

How To Remove Blogger Navbar




In my last post, I had explained how you can create your blog in blogger. To read the post, click the link How To Create A Blog In Blogger. If you have created your blog in Blogger then by default a navbar comes with it that appears in the top position of your blog. Many of you don't like it and want to remove this navbar from your blog completely. It gives an awkward and irritating look to your blog.




Are you feeling very uneasy because of this navbar appearing in your blog? Are you searching for a solution to remove this navbar completely from your Blogger blog? Then you are in the right place my brother.
Read more »

How To Create A Blog In Blogger




You have come across uncountable blogs while browsing Internet in your life. But have you ever thought of creating your own blog and let the world read your blog posts. Yes, you can create your own blog very easily and totally free of cost. And above all you dont need to learn languages like HTML or CSS in creating your blog. Only you got have is your writing ability.

There are many free blogging platforms available online. The most popular blog platforms among them are Blogger, Wordpress, Typepad etc. Blogger is one of the free blogging platform and it is powered by Google. It has got numerous features that many other blogging platform don't have. This blog of mine is set up in Blogger Platform. I am very happy with it.

Anyone can create his own blog. Are you planning of creating your own blog? Today I am going to show you the initial step for setting up your blog in Blogger. This tutorial is going to help you in creating your blog in blogger. Follow the step given below.

Steps To Follow:-

1) First of all you need a gmail account. If you dont have, signup  for a gmail account.

Read more »