Make your comment different from the visitors' comments

When I did blog walking in a blog I found these tips. 'Different comment style for the owner blog'. Yeah if you [the blog owner ] have different style from the visitors' comments, it gives impression to the visitor, does'nt it? At least visitors know which the blog owners comment and which are visitors coments.

Here are the steps.
Step #1 --Go to Layouts/ Edit HTML, give check sign to Expand Template Widget
Find this code

<dd class=’comment-body’>
<b:if cond=’data:comment.isDeleted’>
<span class=’deleted-comment’>
<data:comment.body/></span>

<b:else/>

<p>
<data:comment.body/>
</p>

</b:if>

</dd>


Then above it, insert this code

<b:if cond=’data:comment.author == data:post.author’>
<dd class=’owner-Body’>
<p><data:comment.body/></p>
</dd>
<b:else/>

And below </dd> insert this code :
</b:if>

The full code after changing is :
<b:if cond=’data:comment.author == data:post.author’>
<dd class=’owner-Body’>
<p><data:comment.body/></p>
</dd>
<b:else/>
<dd class=’comment-body’>
<b:if cond=’data:comment.isDeleted’>
<span class=’deleted-comment’><data:comment.body/> </span>
<b:else/>
<p><data:comment.body/></p>
</b:if>
</dd>
</b:if>

Step #2 -- add CSS code

Find this CSS code


#comments-block .comment-body p {
margin:0 0 .75em;
background:#f3f3f3 no-repeat left bottom;
}

Then add this code below it

.owner-Body {
margin:0;
padding:0 0 0 20px;
}
.owner-Body p {
font-size:100%;
margin:0 0 .2em 0;
color:#FF0000;
text-decoration:bold;
}

Step #3 -- Save it and preview your blog.

Thanks again o-om for the advice.



Change or Delete Label number

Label is usually represented our categorized posts. If you don't find it at your blog, you can add it easily. Just go to Setting, Layout, then choose Page Elements. Find Labels and click Add to Blog. One of the advantages of using labels in our blog is our visitors can easily find posts in its category. The default of number behind labels is label name (labels number). If you want to change it to be label name [labels number] or label name <labels number> or label name - labels number; follow these steps.
Steps #1
Go to Edit Html, give check sign for 'Expand Tmplate Widget'.

Step #2
Find the code (<data :label.count/>). Then change '(' and ')' with sign you like.
For example :
[<data :label.count/>] makes label name [labels number]
{<data :label.count/>} makes label name {labels number}
- <data :label.count/> makes label name - labels number

But the number behind the labels sometimes disturb us. Just imagine when we have written posts for 'Tips' and total of the posts with label 'Tips' is 1000. Isn't it disturb?? Ok, how to make it?? Here we go.

Step #1
Just delete code (<data :label.count/>). And you are done :D
 
Minima 4 coloum Blogger Template by Beloon-Online.
Simplicity Edited by Ipiet's Template