February 6, 2009
In default Blogger templates, the comment link (the one that allows your visitors to leave a comment when clicked) looks like this:
Current appearance may be confusing for some readers...► appearance: link is "stuffed" in the footer with all the other items...not quite visible
► interactivity: it does not invite your reader to leave a comment, and this can cause less comments on your Blog
In this tutorial, we'll learn how to:
► replace the word comment(s) with something else
► add some text beside the comment link (like: Leave your comment here: 4 comments)
► add the comment icon beside the link
► fix the singular/plural bug - 1 comments
► add a description (a tooltip) to your comment link when hovered
***
Replace the word comments with something elseThis is an easy customization. You can replace the word comments with your own text (examples: Reactions, Leave your comment here, Comment here, Say something,....). Ready?
Go to:
LAYOUT ► PAGE ELEMENTS ► click on Edit in the BLOG POSTS box
In the pop up window, replace the word comments with reactions (just an example, you can use any text you like...)

***
Add some text beside the comment link
We can place some text before the comment link, or just after it.
To do this, you will have to tweak the code. Just a bit. So I advise to:Back up your current Blogger template
When you did, go to:
LAYOUT ► EDIT HTML ► click on Expand widget templates (in the upper right corner). Now, you can see the complete code of your template. Use [Ctrl] + F (or Edit ► Find from your browser's menu), and locate the following part of code:
<span class='post-comment-link'>
<b:if cond='data:blog.pageType != "item"'>
<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>
This is the code for the comment link. All we have to do now, is place some text in appropriate places in the code:<b:if cond='data:blog.pageType != "item"'>
<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>
<span class='post-comment-link'>
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:post.allowComments'>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'>Leave a comment...<b:if cond='data:post.numComments == 1'>1 <data:top.commentLabel/><b:else/><data:post.numComments/> <data:top.commentLabelPlural/></b:if> so far</a>
</b:if>
</b:if>
</span>
...in orange, you can see the custom text in front of the comment link<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:post.allowComments'>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'>Leave a comment...<b:if cond='data:post.numComments == 1'>1 <data:top.commentLabel/><b:else/><data:post.numComments/> <data:top.commentLabelPlural/></b:if> so far</a>
</b:if>
</b:if>
</span>
...in pink, custom text after the comment link
...nothing from the code is deleted. We've just added some text.
This example is made on dummies template, and therefor it's not eye catching. But it should give you the idea...you can stylize your post footer to suit your needs.
***
Add the comment icon beside the comment link
This is a great way to make your comment link more visible and attractive. There will be more talk about comment icons in some other tutorial...
For now, you'll learn how to place a picture with a comment icon (bubble) or the picture of your choice, beside the comment link.
Here's the code:<span class='post-comment-link'>
<b:if cond='data:blog.pageType != "item"'>
<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><img src='http://i39.tinypic.com/33z5njo.jpg' style='border:0px'/>
</b:if>
</b:if>
</span>
...in orange, you can see where the picture is placed<b:if cond='data:blog.pageType != "item"'>
<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><img src='http://i39.tinypic.com/33z5njo.jpg' style='border:0px'/>
</b:if>
</b:if>
</span>
...you will REPLACE the part in pink with the URL address of your pic (you can use photobucket.com, tinypic.com......for free pic hosting)
In this example, the picture is placed after the comment link....
To place it before the comment link, you'll have to change it's place:
<b:if cond='data:post.allowComments'><img src='http://i39.tinypic.com/33z5njo.jpg' style='border:0px'/>
...place the image code right after the line in orange***
How to fix a singular/plural error with comment link
This one goes for all Neat Freaks and Pedantic Petes.....
You've probably noticed this bug:
► 0 comments
► 1 comments (here's the bug)
► 2 comments
What to do?
<span class='post-comment-link'>
<b:if cond='data:blog.pageType != "item"'>
<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 the part in orange with: comment<b:if cond='data:blog.pageType != "item"'>
<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 the part in pinkish with: comments
...that's right, only with the word, without brackets...
***
Add a Tooltip to your comment link
This is a great feature. The user hovers the mouse cursor over the comment link, without clicking it, and a small "hover box" appears with description.
You can add any kind of text to your comment link in order to make it more attractive and descriptive.Here's how:
<span class='post-comment-link'>
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:post.allowComments'>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick' title='Click here to view/post comments'><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>
...in orange, you can see the added text...<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:post.allowComments'>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick' title='Click here to view/post comments'><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>
I would like to thank BeautifulBeta for this nice hack....
Smile!
















162 comments:
Thanks. I was looking for it
This tutorial is great! Thanks a million for your help and your hard work with the blog. :)
I have a doubt and I think you can help me, if you don't mind of course. ^^
Well, I have a music blog and a friend of mine helped me to customize the layout some months ago, but I currently use the former version of blogger. I wanted to know if there is a way, other than upgrading my template to the new version of blogger, since I would lose some things I have in my blog... With this former version, I can't add the "followers" gadget. I tried to do it by copying the code but didn't succeed. Can you help me out with that? If so, contact me via email, it'll be easier. My email is: david.pires89@gmail.com
Thanks a lot for your time :)
Best,
David
Hey David...
To be honest, I don't have much experience with classic (old) blogger templates...
Here's the link of solution for Followers:
Followers in classic Blogger
But I've never tried this...
Anyway, if you decide to switch to New blogger, I suggest that you save the template pics from classic one, and I'll help you integrate them in a new one...
Smile!
I missed this article.. i'm adding an icon into my layout after reading amanda's post about changing 'subscribe atom' and after that i'm playing with some trial&error method to get it right.
But there are others i don't know yet, nice addition! but, i don't really understand about "How to fix a singular/plural error with comment link"
One more thing, can you tell me how to erase date above post title?and to move 'author' timepost', and label just under Post Title and wrapped them with some background color or borders?
Thank you,
Radih
Hey Radith...
About the singular/plural. Try to do some test comments. You'll notice when you have one comment, it will display 1 comments message. As I said, if you are Pedantic Pete, you'll care...
I'll send you the info on date and label + author on the email..
Smile!
Hahaha..yap..i understand now.. never realized that kind of thing.. ^^
Thank you
Radith ^^
how can I change the position of comments link from beginning of the post to end or vice versa?
headcleaner,
you have to locate the comment link code in LAYOUT ► EDIT HTML ► check the box beside Expand widget templates:
<span class='post-comment-link'>
<b:if cond='data:blog.pageType != "item"'>
<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>
...CUT it, and paste it in appropriate place in the post-footer line...
If you can't figure it out, wait for tutorial....It's coming soon..
Smile!
I think I'll definitely switch to the new blogger. How do I save the template pics from classic one, like you suggested?
David1822,
that's a goood choice. To save the pics, access your template HTML code, and find the URL's of all the pics...
Next, open the pics location and save them to your comp.
Also, I suggest to back up the entire code of your classic template (save it somewhere).
Later, you'll have to upload the pics on a free web host, and integrate them in your new layout, step-by-step...
Not easy-peasy, but sure is possible...
Smile!
Once again you do relentless improvement efforts. Thank you. I think I might get benefited very soon.
maksih..:D
I put in all these various option codes as printed above but after saving template a message appeared: Your template could not be parsed as it is not well-formed. Make sure XML elements are closed properly. XML error message: Element type "a" must be followed by either a attribute specifications, ">" or "/>"
Help!
Hey Nancy....
Can you tell me exactly what do you want to do?
But looking at your site now, it seems you've figured it out...
:]
Hi Pocket,
I just tried again to do a few more things you suggested for improving "comment link" - it worked this time! I must have done something wrong in the coding my first try and it was a little scarey the first time. ;0) Thanks so much for these great ideas!
Nancy
Hey Pocket,
Was just looking over my post/comment and wondered if and how I can change an awkward layout?
Presently this phrase is on two lines:
...Leave a comment...0
comments
Want to move Leave a comment...0 to next line so second line would read -
"Leave a comment...0 comments"
Thanks.
Nancy
Hey Nancy....
First try the normal way:
LAYOUT ► PAGE ELEMENTS ► click on Edit in BLOG POSTS box.
Now, on the Post footer, "drag" the comment box in second line, or third...Rearrange them to suit your needs...
If this ain't working (sometimes it doesn't), come back here...There's a way...
Pocket,
the normal way didn't work. :0(
Also wondering about "Links to this Post" at bottom of a post. I click on it and then a "Create a link" option comes up under the reproduced post. I click on that and a box shows to "sign into Blogger with your Google Account"!What is the purpose of this?! Do I need it?
Sure appreciate your expertise.
Nancy
Hi again Pocket,
Even though the normal way didn't work I just went in (midnight)to remove the time of day for my posts and walah! my "comments" are all on one line!
But I'm still wondering about the "Links to this Post" question?
Thanks! Nancy
Hi Nancy!
About the comments. Nice one! There's still the other way if you'll need it...
About Links to this post. Here's the original:
Blogger Buzz - Introducing Backlinks
Blogger help - What are backlinks?
Smile!
Hi Pocket!
Could you tell me how can I edit the comment link to look like this: comments 0. So I would like to put the number after the word.
Cheers!
Gaboro,
here's the code:
<span class='post-comment-link'>
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:post.allowComments'>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'>Comments <b:if cond='data:post.numComments == 1'>1<b:else/><data:post.numComments/></b:if></a>
</b:if>
</b:if>
</span>
...COPY it and replace yours...
:]
Works great! Thank you!
Your tips are super helpful. I've been happily making my changes to my blog!
I made changes to the comments footer and I added a post divider, but when I added some labels to my test post, I noticed that the 'label' footer is running into my 'comment' footer. Not sure if how to fix this. Could you take a look?
Soapydreams.blogspot.com.
Thanks!
Carol
Carol,
try this: LAYOUT ► EDIT HTML ► paste this in your CSS:
.post-comment-link {
margin-bottom:10px;
}
..adjust the 10px to whatever suits you...
I love everything you are saying I have just a couple questions.....
1. What do I need to do so that when I view comments people have left on my site, I can send them an email back about their comment?
2. I cannot see the pencil and wrench on my site, what can I do to fix that? I know that you have to be signed in and have the correct boxes checked but they still aren't there.
3. What do I need to do so that comments that are left for me also are sent to my email?
Thanks in advance for your help. :)
Hey...
1. You can check their profile link, and see if their email is shared. Or, simply reply in your Blog...Readers will probably come back, and see it.
2. If you have a third-part template (from somewhere), this can happen...You'll have to play with HTML a bit, and add it manually...I'll have a tut on this. In the meantime, try to google for help...
3. To get comments on email: DASHBOARD ► SETTINGS ► COMMENTS ► Comment Notification Email (on the bottom) ► enter your email address ► Save.
:]
Thanks, I got #3 fixed and I will just wait on you for #2. Great information. I will be waiting.
Hmm, for some reason that didn't work. Maybe I'll try moving it over to the right.
Carol,
..it won't be easy, it's a customized template, and it's hard to tell...If you have time, download your template design, an email me the file. I'll figure it out, and then tell you exactly what to do...
Ok?
Thanks! This was easy to follow and very helpful.
How do I have the comments already displayed (as you have here) without a link, I want the comments to already appear when the user initially lands on the index or post page (they shouldn't have to click a link at all). Any advice would be super appreciated! All tips on this issue so far do not work for me for one reason or another.
For comment form, read this:
Comments below post
...
Yeap, know all about that; however, I was wondering if you knew how to have the comments auto appear when the user first lands on the index or main page of a blog in blogger. You see, as of now, the user has to click on a post, once that is done the comments do appear. But I would like a post commments to show (on the index page) without a user having to click anything. For example, if you were to go to this blog, no comments box would appear upon you initial arrival:
http://cms-beginners.blogspot.com/
Note: this blog is still in progress...
Thx!
I understand...But never saw this in action...And I seriously doubt that it's possible to hack this...
Sorry...
If you saw this, show me, maybe I can figure it out then...
:[
good work ,thank you .
I just love your blog. Clean, easy to find things and SO easy to make the changes! Even for me, who was terrified to touch my blog's code!
Could you help me add the Tooltip to my Comments? I made some of your other changes above (changed to "Leave a Comment," fixed the singular/plural error and added the balloon image) but don't know how to add this also. Everything else works great!
Also, do you know of a widget to list Recent Comments in my sidebar? I don't want to show the comments, just the Commenter's name and the Post Title.
Thanks!
I'm trying to add the bubble beside the comment link & the tool tip (hover feature). I've read your instructions above, but still don't understand exactly what code I'm suppose to add & where in the HTML. Can you help me, please?
Thank you for this one, very useful!
How do I turn off the "new comments not allowed" option at the bottom of my comments section. I only have like 3 or 4 comments on there.
Thanks Pocket, and i further added a (if no comments) code as well..hehee! totally lovin it! =D
peek-a-boo comment...
Hi Pocket! I tried to add a comment bubble icon and an icon before the "Posted by..." section, but I have a problem. The icons appear but they are not next to the text - instead they have forced the text onto a new line. Can you help me? Please look here: http://seashellsandsunflowers.blogspot.com/ Thank you so much!
Update: I got my icon to appear before the "Posted by" section and all on the same line, but now my comment bubble doesn't appear at all.
really good and nice job .. you are the best :D.
but i've a question and hope you answer as soon as possible . i've copied the code and also the link of the pic as it is but it didnt appear as the picture you use above , it appears at the top of the post not at it's bottom beside the comment . please answer me and if you want to see it > www.newonspot.blogspot.com thank you
hey pocket!
nice to see ur blog.
:)
good writing too.
im wondering if you can help me,
ive just change my blog to the classic template and i want the comment link are available for each post..ive try lot of ways but still cant.
can you help me?
http://rizarulaltiz.blogspot.com
hey thanks for the tutorial ! i looking for this :D
super greettings, katya
Thank you for all the great tuts! I've been pimping out my blog for a few days now. I'm having a problem with this one though. I added the icon after my comment link and it worked great, so I decided to change it, and put the icon before my comment link, and I get this error, XML error message: The element type "img" must be terminated by the matching end-tag "".
Not sure why it would work after the link and not before it? Please help!
I came across your great site while looking for a solution to my problem, and I hope you can help me -- How can I enable my readers to leave their links in my blog-comment space? I tried it myself -- writing the entire URL -- but it still doesn't work. It works on other people's blogs, but not on mine. Help?
THANK YOU for this informative post, since it answered my exact question in a very efficient way. I also checked out some of your other posts (which, needless to say, also helped).
Hi Pocket,
How do you change when you write a comment, from it saying 'Anonymous said...' to make it say 'Anonymous says:'?
Hi, how can I make the comment visible in the front page post? I am using grid focus template and it's on the top part.. I wanna move it on the bottom of each post. Thanks a lot!
sorry, I mean the "leave a comment: 0 comments" part.. not the entire comment section. thanks much! :) site is http://www.stylemargarine.com
Interesting Information nice..about the comments in blogger i own a website & in that Blog also i got the Domain name registered in tucktail.comthey provided me free blog.
Sooo helpful Thank you so much!!
Your tips have been so helpful.... have tried for days to make my comment section more user friendly and it finally worked. Thanks!
Thx for the info, came in handy
looks good but i have one question, well i turned to the classic blogger because i didnt like any of the layouts for the new one so i went to blogskins.com to get a layout and now that layout doesnt have a "post comment" on the page i was just wondering how i can add the code to the page now on the edit html thing, and also the code for you can show all the followers your have thanks much !
go to my blogspot to see what im talking about
www.delalove-dianav.blogspot.com
Hi, I want to add an image behind my comment link. Keep the same link "4 comments" but have that inside a speech bubble image (instead of beside the actual link). Any ideas?
Woot, thanks for the awesomely awesome post! I added the bubble thing to my blog.
awesome tutorial... all worked good but one feature: title='Click here to view/post comments'>
this was accepted into html but it does not functions when hovering over word coments...
thank for the help!
comments... i meant!
This worked great. (Wish I had time to look at icons! But then I'll never leave the computer.) Wondering if it's possible to get "comments" at the bottom of the page instead of the top by moving the code? Or have a comment box on the bottom of posts like you do? It seems that people would want to comment after reading a post, and therefore it's more convenient to reach the bottom of the post and click comment. Scrolling up and looking for "comment" gives them time to lose interest and say forget it.
Hi, I hate to bother you with this but the posted comments on my blog are not visible. I think I deleted something I shouldn't have.
If you click on the comments link it gives you the comments box for entry of a comment, but the previous comments are not visible.
Can you help?
I would really appreciate it if you could.
My address is is www.myhuntingfishing.com/
realy this help me I have real problem because I d'ont recive comment in my blog
Hi Pocket,
I'd tried the singular/plural comments thingy many times, but then the "1 comments" still appear...what have i done wrong?
Diana V.,
...this won't work with classic Blogger. Sorry...
gweb,
check if your comments are set for moderation on your Dashboard.
F.J.,
try again. Carefully.
nimrod243,
..try to reload your widgets to default (first back up your template and current widgets)...
Sarah Kate,
...you have to place your background picture under this line in CSS:
.comment-link {
Thanks for reply.
God bless you.
Just go to Sabbath
Thanks
Hi,
I am not seeing the comment link on my blog. I think the code may have been deleted somehow. Could I paste the above code into my HTML to see? If so, where should I place the code. Here is the link to my blog: dapperpaper.blogspot.com
I have added in comment links manually for now until i can get it working.
Thanks!
hi,
nice tutorials.
emm,can i ask you something??
how to replace the words ''post comment'' into a cute small icon??.
can you help me???
I.
LOVE.
YOU.
You've fixed all my problems!
Thanks for your help with this, pocket!
thanks pocket~!!
This is great, thanks Pocket. I'm working my way through these tips.
However, my comments line always appears to have a space in front of it which I can't get rid of and so doesn't line up with the other stuff in the footer. Any idea what this is? I've hunted around the code high and low but am baffled.
http://electricwriter.blogspot.com/
Hey Matt,
..maybe it wouldn't be a bad idea to switch the places of "comments" and "email this post" module (or "linkage")...
Comments are always acting weird (because of the number - it reserves a space for a 2 digits one).
It is possible to pull the third line to the left, but I advise not to.
Smile!
I was so excited to see this post, but I can't find any code close to that in my blogger template even with the expand widget thing open. Is this maybe due to using a custom template. People are always getting confused on how to leave a comment and I would love to fix it.
http://lexlocilori.blogspot.com
Hi pocket...
Just found this excellent article.
After tweaking the 'comments', I moved it from below the post to above the post using the HTML editor. But, now the date and comment appear in 2 diferent lines making it weird?
Can you help me in bringing both of them in the same line?
I am using the Watermark template (template available in the new Template Designer.
Hi pocket, I have two questions.
1) I fixed the singular/plural error the way you described and it looks really nice:) But only on the page itself. When I click the singular-link and I'm directed to the page where that 1 comment is displayed, the headline directly above that single comment still uses the plural form. How do I fix that?
2) Using your tutorial I added an icon next to the comments link - it looks beautiful - and I'd now like to make the icon itself clickable, not just the comments link but the icon itself. How do I do that?
Many thanks for your great tutorials!
offer cheapest shoes sale
hi, can u help me with my blogspot template.
i'm currently using a classic mode of blogger template.
i already try to change into the advanced layout once, but at the same time I want to keep my old template. I try to use the same codes of classic mode in the advanced mode, but anything wont happen.plz. help me.
Hey thank you soo much for you blog and your tips they are life savers! :) I have a question, do you know how to implement a picture instead of a comment link text?
The ever explanation on bubble code for comments
just add some more info on adding no of comments in bubble
i already did this experiment but i came here to add hover for comment bubble
and successfully did it
Thanks
YOUR EXPLANATION is best amongst competitors
for beginners like me over here
Thanks a lot for this info:)
This was super helpful for my blog! Thanks a lot!
Cheap Louis Vuitton handbags sale and Cheap Louis Vuitton bags sale and Cheap Louis Vuitton purses sale and Cheap Louis Vuitton luggage sale and Cheap Louis Vuitton Speedy sale and Cheap Louis Vuitton Travel sale and Cheap Louis Vuitton Leather sale and Cheap Louis Vuitton Canvas sale and Cheap Louis Vuitton Monogram sale and Cheap Monogram Canvas bags sale and Cheap Damier Ebene Canvas bags sale and Cheap Damier Graphite Canvas bags sale and Cheap Damier Azur Canvas bags sale and Cheap Damier Canvas bags sale and Cheap Monogram Vernis bags sale and Cheap Monogram Idylle bags sale and Cheap Monogram Multicolore bags sale and Cheap Monogram Mini Lin bags sale and Cheap Monogram Watercolor bags sale
Im not sure why but I cant get an image to show up. I have a basic knowledge of css/html - I know that I'm pasting it in the right place etc.
Could you offer any advice?
thank you
Thanks for some of these great tips. I will try to use those for my gaming blog xd
http://skybluerpg.blogspot.com/
Hi. I recently changed mine to a classic template. Do you know how I could add in comment box since I don't have one? Any html u could recommend? Thanks.
Oh i see...
So it's like this.
Im gonna apply this to my newbie blog: my Blog
Thanks a lot.
moncler sandals may not be as famous as moncler Boutique but it is really so comfortable that I can not help recommending it. Since I saw moncler pas cher at first sight, I was attracted by the cute cool colors. The light colors make me feel so cool and comfortable. When I try moncler prix on, I feel so easy and pleasant. moncler soldes simple to show off the uniqueness of your personality by trying something pleasant and striking. moncler paris are available in different sizes and colors. You can find any of the size which best fits you. The moncler polo can also be bought online from website. Many colors and designs are available in moncler veste Many famous stars are the honest fans of moncler doudoune, too. The jackets such as the moncler homme
with hoods and reflect a casual wear line. In addition, the simple line of moncler femme
is also suitable for a casual day. You may ask where is the best place to buy doudoune moncler femme? Well, you are right here. We are the most reputable and the perfect doudoune moncler homme online shop. As doudoune femme is one of the most popular fashions down garments internationally. Now is autumn, the winter is coming soon. Buy a doudoune homme to your honey, he or she will never afraid of the winter,, never feel cold in winter with Moncler Gilet
Is there a way to change the font size of the comment link? Currently mine is so small that I think it is just overlooked.
So, I used this and replaced the word comments and I like it; however, it's only changed on my homepage, not on the actual post. I want the comment links on the post and the homepage to be the same. Can you help?
Photographing jewellery thomas sabo bracelet can be tricky, but with a few concepts and budget below US$500 it is possible to thomas sabo bracelets achieve near-professional look of the photographs. This guide thomas sabo bracelets uk is intended for absolute beginners. Terminology is simplified, and camera thomas sabo bracelet clearanceadjustments are discussed with only jewellery in mind. Strung together innovatively with thomas sabo charm bracelet gold or silver wire, these form great offbeat organic jewelry. Pearls are as versatile as you want to make them, choose pearl jewelry that is thomas sabo charms bracelet crafted to bring out your features and attitude to their discount thomas sabo bracelet best advantage.
thanks! great article
Let professionals deal with your academic papers we provide professional we specialize in a wide range of academic disciplines and possess different degrees for any academic level at affordable prices
I have never read such a wonderful article and I am coming back tomorrow to continue reading.Wholesale Electronics
Great podcast. I love it.wholesale
Hi, This is a good post, indeed a great job. You must have done good research for the work, i appreciate your efforts. Looking for more updates from your side.
That is fantastic. Thanks for the link. A great idea for a book!
wholesale
Great..i have added this to my blog
Your posts, are awesome....
very well written...i am one of your regular readers...
This is such an important topic, thank you so much for sharing.
Nice hack!!
I'll try it on my The Triond Experiment Blog
Thanks!
Nice blog ! I like your article and i will definitely look again..........................................
regards:
http://www.viaam.com/upload/Standard-Suitcase-1684874908.aspx?CatVal=35
Those are absolutely gorgeous, I’m in love!i never seen this type of blog like before smashing
hi,
is it possible just to have the icon? without 'comments' or the number of comments.
HELP!! I have a new custom template called Rainbow Garden Template however I am having THE hardest time working out how to get my comments form back on the bottom of my posts. All old comments are showing up but there is no form for this new one. I have tried EVERYTHING from all different blogger help people/blogs and still can't manage to see what I am doing wrong.
Let me know what you think. Cheers!
We here at STAR Translation know how important it is to tell those closest to us how we feel about them, and with Valentines Day upon us there is no better time to do so.
http://www.star-ts.com/i-love-you-languages.shtml
This link can show you how to say ''I Love You'' in a wide variety of different languages, which could be really helpful if you have loved ones abroad or if you are simply trying to impress that special person this Valentines Day.
Enjoy
very good man
mohamed Egypt
Thanks for this fix. I used it and it is great. Is there any way of changing the font size to make the word comment more attractive and stand out from the other words? I find that people don't know where to look. You can check my blog to see now I used your code.
http://www.adventurejo.com
This is a nice site to comment
Me again, these tutorials are sooooooooo good. so easy to follow, you're the best of the best xx
Thanks. I like your blog.I have added this to my blog
I have been using the old blogger template since 2004 and if I want to use my old skin on the new template format, it won't show.
I want to add the comments link under each post using the old blogger template. Is there a way to do so?
Thanks for your sharing. Well Done!
Blogging keeps me insane. Keep up all the positive work. I too love to blog. I found this one to be very informative :)
Whirlpool Baths
Very interesting post – I’m definitely going to bookmark you! Thank you for your info.
http://www.paydayloanz.co.uk
agreed with you guys
This is a nice site to comment more attractive and stand out from the other words? I find that people don't know where to look
not working for me ;(
Okay, I tried this, works a treat but ONLY on my homepage. My individual post pages show completely screwed up! Help?
Hi,
the code that we need to look for, its showing up in my codes twice. I do not want to do anything, so should i perform the steps above on both?
the site is www.eventuallyco.com.
Thanks in advance!
http://www.autoincomeplus.com/?aff=PERU321
https://safedepositary.com/?r=swarna321
autoincom and safedepository posted links are good
good job thanks for sharing it
Knowing your derma blazon is one of the a lot of important derma affliction tip.utah dermatologist
Collects and Shares of Girls Photos with You
girl-database.blogspot.com
good things to get visit here now
www.worldcelebritiesphoto.blogspot.com
www.worldcelebritieswomenphoto.blogspot.com
www.onlinenewsbg.blogspot.com
thanks for information. rubal saggu
good job thanks for sharing...
Great blogs we are provides the best domain name registration services in India
free lots of games, this is Santa Games, play today
Santa Games
I guess the same concepts perhaps applied to somebody that provides no products however only advertising space on their blog. I assume that may really well thought-about as a product.
cheap HTC phones
Thanks for sharing and letting us aware about this information. This is a great thread, so much info.
http://teralifeonline.beeplog.com/192604_1164916.htm
http://teralifeonline.blog.com/the-way-inactive-guild-leader-replacement-works-is-pretty-straightforward/
http://misswoww.canalblog.com/archives/2011/11/07/22602337.html
♥ this tutorial! it makes my blog look cool!
can u help me?
1. after install new theme now no comment option here
2.i wish to use animated comment option what will be hide and visible after click.hope u will come forward to help me
here my blog link.http://gsmideazone.blogspot.com/
nice tutorial thanks
Great fantastic tutorials
Logo Design
We still cannot quite assume that Possible come to be some staring at the important points available your web blog. Our kids and that i are sincerely thankful for ones generosity and then for giving me possibility pursue our chosen profession path. Happy important info I received out of your web-site.Thanks for these kind blogs.
Thanks a lot for sharing.Nice tips
I reflect it have supplementary info so it very pleasant idea by site owner so thanks to owner for this accepted wisdom.
good job thanks for sharing...
Well Done,Thanks for shearing.
nice tips, thanks
It has every of the spirit news bulletin so when I take to indicate this site that I have been extremely helpful and I take for granted it very obligatory all assembly of people.
It has every of the essence news so when I take to mean this site that I have been extremely constructive and I assume it very obligatory all group of people.
useful post, thanks a lot for this post
very effective and essential information.Thanks a lot.
This looks really cool! I don't think I can use it, though, because I switched from Blogger comments to Disqus. I think I will have to customize the CSS in Disqus.
Wonderful web site
web design company india
This is a perfectly written article, very informative and helpful, thanks for sharing these acting resume writing tips. Best Acting Sample Resumes
This is a smart blog. I mean it. You have so much knowledge about this issue, and so much passion ppsc
excellent, thanks a lot!
So happy to be here in your site. An i love reading your articles. Very informative.
hello, my name is kitty, you can visit me on my blog: www.kitty-musicgeniapigspainting.blogspot.com. I have my blog but I have a lots of problems. So I tried to create 3 blogs, 1 and 2 blog I made with many problems with registration, they are reloading the page but no mistakes found but I need to reenter my password because of reloading the page many times. And I tried to make a 3 blog, but I saw the only text: sorry, but we will not make you a blog! And I worked on my 2 blogs and made it on different topics: guinea pigs, music. After one day blogger send me a message on my email that: your blog has been deleted because your blog are not interesting for blogger, and 2 blogs where deleted. On the next day I made a 4 blog easy. Please, leave me a comment about me on www.kitty-musicgeniapigspainting.blogspot.com. Thank you!
That is great
Say it...