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>
Continue Reading

Use Mobile Phone To Connect Internet In Your Micromax Funbook Tablet

Hello guys, I know many of you are facing problem in connecting internet in your Micromax Funbook tablet using dongle. For all those guys who are facing problem in connecting their dongle to Micromax Funbook for surfing internet I am here to help you with an alternative solution. You can use your mobile phone and connect it with your Funbook for surfing internet in your Funbook.


If you are having Android phone with wi-fi connectivity feature then you can make use of wi-fi tethering facility available in the phone, turn it on and connect your funbook with your mobile. For other mobile phone users having wi-fi facility but no wi-fi tethering facility there are many applications available. One such application named joikuspot works fine in nokia symbian mobiles and that turn nokia symbian phone into wi-fi hotspot .

Steps To Follow To Use Android Mobile Phone To Connect Internet In Your Micromax Funbook Tablet  :-

1) In your phone - Go To Settings > Wireless and networks > Tethering and portable hotspot.

2) Check Portable Wi-fi hotspot to turn it on.

3) Now in your Funbook - search Wi-fi network and connect.

4) Now open your browser and surf the internet.

This was the procedure of connecting Micromax Funbook tablet with android mobile phones for using internet in Micromax Funbook. This will work on other tablets also other than Funbook. If you are having some other mobile phone you have to download available application of wi-fi tethering and follow the instructions given in the user manual that comes with the application.


Hoping that this post will help you :)
Technorati token - G3Z45PP955P8
Continue Reading

Get Free Recharge By Playing Online Games

You may have come across many free recharge advertisements but most of them turn out to be illegitimate and you get nothing out of them. Today I am going to share a website that actually pays you free recharges and it is 100% legitimate. The name of the site is Online Games Now and here is the link to the website :- www.ogean.com.

You will get free recharges by playing free online games in their website. You can give some of your time in playing online games whenever you are free and that too will give you free mobile recharge. So isn't that great? You can also earn free recharge by promoting their site in social networking sites,forums,blogs,etc. You can use it both as a Gamer and as a Promoter.

Ways To Earn Free Recharge From Online Games Now


A) As a Gamer
    1) By playing Games, your Account balance will increase.
    2) When it reaches Rs 10, you can recharge just by going to the appropriate link.
    3) It depends entirely on you when to do recharge, but the minimum money needed for posting recharge request is Rs 10.
    4) Play a Single Game for At least 5 minutes to Get Points
    5) Get More Points By playing Different Games (important)


B) As a Promoter

    1) You need to share your referral link to your friends using social networks, or posting in your blog, forums etc.
    2) You can get Rs 1 Per 4 Visitors (visitors coming to the site using your referral link, they don't need to register).
    3) They Will Recharge Your Phone for Every 500/- Rupees.  (For promoter recharge, email support@onlinegamesnow.in with your username ,and recharge amounts).
Continue Reading

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;
&nbsp;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;'>
&nbsp;<! 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>
&nbsp;</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.
Continue Reading

Free Aircel Unlimited 3G Trick February 2013

We are sharing here a trick by which you can use free unlimited Aircel 3G data usage. This trick is not a new one. Maybe some of you already know this trick and utilising free unlimited Aircel 3G data. This trick was working last year and still it is working absolutely fine. With the help of this trick you can enjoy unlimited 3G speed in a 2G Pocket Internet pack.  Read the whole instructions carefully.

  • First of all activate 3G service in your sim. If it is activated already then skip this step. To activate 3G, send "START 3G" to 121.
  • Now you can recharge your Aircel sim with any 2G Internet Pack. To use this trick of free 3G speed for a month, recharge with one month pocket internet pack.
  • Before using the Internet ,you need to configure the APN settings correctly in your phone or device. Normally you will get the settings via SMS from Aircel. You can also configure it manually.                 
      Profile Name : Aircel                                                                                                                            
      Access Point Or APN : aircelweb
  • Again now recharge your Aircel sim with any low cost 3G internet pack. Recharge with Rs. 8 or Rs. 18 internet pack.  You will get 50MB 3G data usage from Rs. 8 pack and 100MB 3G data usage from Rs. 18 pack.
  • Consume your 3G data completely. Wait for a day. From next day you will get free 3G speed everyday for one month.

Enjoy 3G speed in your 2G data pack!

technorati- SCUXN3HFDGBG

Continue Reading

How To Find IMEI Number Of Your Phone

IMEI stands for International Mobile Station Equipment Identity. IMEI is a unique number to identify every mobile phones, as well as some satellite phones. In case if your phone is stolen then you can contact your network provider, provide them the IMEI number of the stolen phone and they will blacklist the phone using that IMEI numkber. So this IMEI number is very useful one.



Continue Reading

How To Make Small Emoticons In Facebook

Emoticons are pictorial representations of facial expression which tells person's feelings or mood. Emoticons in Facebook is becoming a trend. :-) represents happy face, :-( represents sad face, :-D represents laughing and there are many more emoticons or smileys that represents various facial expressions.



Continue Reading

Gangnam Style On Facebook Chat

Gangnam style is a Korean pop single by South Korean Rapper PSY. After few days of its release the video of Gangnam Style went viral on the internet. It also became the most watched video on Youtube surpassing Justin Bieber's single "Baby". Facebook being the number# 1 social networking site (1 billion subscribers) and number# 2 website according to alexa ranking it was obvious that Gangnam style was one of the trending topic on Facebook. Facebook too helped to a great extent in the promoton of that video.



Continue Reading

How To Find MAC Address Of Android Mobile/Tablet For Wi-Fi Access

If you don't know how to get MAC address of your Android mobile or tablet then I guess your are in a right place as I am here to guide you. Many of you use your Android mobile or tablet to connect to Internet using wi-fi. To improve your wi-fi network security you want to enable MAC address filtering. But if you have enabled MAC address filtering in your router then you need to provide your MAC address of your Android device. So you need to get the MAC address of your device to keep accessing Internet safely. Now we will not go more deeper and lets talk about the procedure to get the MAC address of your Android device.

 
Continue Reading

New Facebook Emoticons – Smileys List 2013

We saw many changes in Facebook last year. In 2012 Facebook introduced many new features. Facebook also became the first social networking to achieve 1 billion subscribers. They are now way ahead in terms of number of subscribers from other social networking sites. This year Facebook has come up with many new and awesome emoticons that users can use in Facebook. Facebook Users can now show off their emotions in much better way. 


Continue Reading

5 Tips For Protecting Your Email Privacy.

Internet world is full of scammers and spammers. To protect your email privacy from scammers and spammers taking appropriate measures is highly recommended. Hackers might hack your email and steal your personal and valuable informations. To protect your email from intruders read and follow the guidelines given below.

Continue Reading

How To Download Torrent Using Mobile Easily

We all know how to download torrent using IDM in PC, but today I am going to tell you how you can download torrents in your mobile. To download torrent in your mobile some prerequisites will be required. First of all, your phone must have internet facility. Secondly, you need UC browser in your phone. If you don't have UC browser installed in your mobile then search for the latest version of UC browser in web and install it your mobile.




Continue Reading

Speed Up Your Mozilla Firefox Browser

Mozilla is one of the most popular web browser. Mozilla is so much popular among internet users because of its excellent user interface and of course it is totally free of cost. Mozilla is also very fast web browser. But if you internet connection is very much slow then what a web browser can do for you. A simple tweak in settings of Mozilla can increase your internet speed if you are having slow internet connection. Increase in speed will be very much but somewhat effective for slow internet connection.



Continue Reading

How To Download Youtube Videos Without Using Any Software

Youtube is the world's largest video sharing website. Youtube is the site where you can get all kind of videos. Youtube is a collection of music videos, movies, sports videos, documentries, tutorials, etc etc...You can find out in web that there are various method of downloading videos from youtube to your computer disk. I am going to tell you one of the easiest method for downloading youtube videos without any help of any kind of software. This trick will help you to download youtube videos easily without using any software.


Continue Reading

Hidden Tricks Of VLC Media Player

We all know that VLC media player is the most popular media player and is preferred among various media players by most of the people. VLC can play almost every video and audio formats. We use VLC media player to watch movies, videos and listen musics. But do you know you can also perform a lot of other things with VLC media player. I am sharing some hidden tricks of VLC player.


Continue Reading

Get Serial Number You Need Easily

Google is most useful website in the web. It can perform all tasks for you very easily. Only you need to do is just typing in the Google search box and press enter. You can find here every solution of your life. Are you suffering from anxiety? Just open Google.com and search "How to recover from anxiety?". It will come up with many solutions for you. Do you use computer regularly? Then definitely you need various softwares to run perform various tasks. Some softwares are free and but for some softwares you need to pay to get serial numbers so that you can use them without any intervention. So how will you get serial number? You can search in Google for serial number.
Continue Reading

Tips To Improve Your Alexa Traffic Rank

All webmasters knows that how much important is their site ranking. They knows it very well that a good ranking will return them a good amount of traffic to their websites. Here in this post I will give you some tips and tricks to improve your Alexa ranking.

What is Alexa?
Before you improve your alexa ranking, let us discuss about what is Alexa exactly. Alexa is a website that gives every site a rank on the world wide web. The calculation of ranking is done on the basis of traffic to the site. The site having lower Alexa Rank is considered better than site having higher Alexa Rank. That means  site having Alexa Rank # 1 is the best site according to Alexa Ranking.

Here is the Tips To Improve Your Alexa Traffic Rank :-

1) Publish Good Posts Regularly
Update your site regularly with unique posts. The more you write, the more will be the number of visitors to your site.

2) Verify Your Ownership On Alexa.com
Create an account on Alexa.com and add your site. After adding your site will have to verify your ownership by adding a META tag code.

3) Install Alexa Toolbar
Download and install Alexa toolbar in your browser. Click on the link to download the Alexa Toolbar . This toolbar will show you the trending topics and pages on the web. This toolbar will also show the alexa rank of every site that you visit.
 
4) Use Alexa Widget On Your Website/Blog
Alexa widget shows your Alexa Rank. Put this widget on your site so that you dont have to go to alexa website everytime for checking your rank.
 
5) Get Review About Your Website on Alexa
Asked your visitors and friends to leave a positive comment about your site on alexa.com. This will improve your site's reputation and thereby your rank.
  
6) Get More Alexa Site Links
Create more backlinks to your site. Leave comments on other good sites, participate in forums and communities with your site address. This will not only improve your alexa rank, it will also improve your pagerank and traffic
 
7) Increase Your Visitors Globally
Try to get traffc from all over the world. Do not concentrate for traffic from your region only. Write posts that relates to worldwide.
 
8) Write Good Posts About Alexa
Write something good about Alexa in your blog. May be this can result in some good for you in return.


This are the ways by which you can improve Alexa Rank of your site.  You can share your alexa ranking in the comment box.
Thanks.
Continue Reading

Top Android Apps For Social Networking

The demand of android run smartphones is increasing very rapidly. Lots of free useful apps available for android smartphone users. Users can easily download freely available apps from Google Play store. Android Smartphones are also very useful for social networking. There are many useful social networking applications developed for android system. Here I am listing my Top 5 Android Apps For Social Networking.

1) Facebook Android Apps - Facebook for Android is the best application built in Android for connecting with your friends on Facebook. Using this app you can chat with our friends, update your status, check your profile, send messages and many things on Facebook. Facebook chat android app is another application by which you can directly start chatting with your friends.

2) Nimbuzz Android App - Nimbuzz is an application used for free calling, free messaging and chatting with friends who are using Facebook, skype, myspace, google talk etc. It has been quite popular on java phones. Now Nimbuzz is also available for Android phones.

3) Ebuddy Android App - Ebuddy has made instant messaging very easy. It is an all in one application that helps you in connecting to the world’s most popular Instant Messaging services. You can Chat with multiple MSN, Facebook, Yahoo, AIM, ICQ, GTalk & MySpace accounts.

4) Twitter Android Apps - A number of twitter applications are available for Android mobile phones. The Official Twitter Application is the best among them and users can tweet with a single click. Tweetcaster and Twidroyd are also good and many users are using these apps for tweeting purpose.

5) Anypost Android App - This single Android Application can be used for posting to sites like Twitter, Facebook, MySpace, and more other social networking sites with ease. This way by using this app we can save our time and post to all social networking sites at a single click.

In addition to these apps there are many other social networking applications for android that can be very useful to you.
You can add up more apps in your list. Please write your favourite Android App for social networking in comment box.
Continue Reading