Change "Comments" text / Embedded below post


Author Message
Strappado

Posted: 4/13/2010
Quote message 

Hi im wondering how I can change the name of the "Comments" text,
You know the comment link under the posts.

It seems like it's not possible to embedd it under the post either, I have tried a lot of blogger tips but nothing changes.

Does anyone have any idea how this could be done?


 
artesteerder

Posted: 3/30/2011
Quote message 

i was wondering if you found an answer?
 
Diego

Posted: 3/31/2011
Quote message 

Strappado,
go to Design > Edit HTML, check Expand Widget Templates option

then find this tag in textarea:
<data:top.commentLabel/>
this is text for single comment, you can change it

then find this tag in textarea:
<data:top.commentLabelPlural/>
you can change it too

For example:

was
<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>

became
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><b:if cond='data:post.numComments == 1'>1 CoMmEnT<b:else/><data:post.numComments/> CoMmEnTs</b:if></a>
 
herojig

Posted: 4/25/2011
Quote message 

So I guess u are saying that it changed to 'CoMmEnts' eh - cool tip! But how to change the styling of the line in Blogger Edit Template HTML? is that possible? I guess I just need to find the right css block :-(
 
Diego

Posted: 5/5/2011
Quote message 

herojig
as you can see from my example, the link has class 'comment-link'
you can use this class for writing css styles

you can write style before these lines:

/*[*//*]*/

]]></b:skin>

for example:

.comment-link{
color: red;
font-weight: bold;
}

/*[*//*]*/

]]></b:skin>