( 为了以防万一,请先下载您的完整模板 )
step 1:
打开设计→修改HTML
然后在『扩展窗口小部件模板』的空格打勾。
同时按着键盘上 Ctrl 和 F,
寻找类似以下的代码
<dd expr:class='"comment-body " + data:comment.commentAuthorClass' expr:id='data:widget.instanceId + data:comment.cmtBodyIdPostfix'>
<b:if cond='data:comment.isDeleted'>
<span class='deleted-comment'><data:comment.body/></span>
<b:else/>
<p>
<data:comment.body/>
<span class='interaction-iframe-guide'/>
</p>
</b:if>
</dd>
<b:if cond='data:comment.isDeleted'>
<span class='deleted-comment'><data:comment.body/></span>
<b:else/>
<p>
<data:comment.body/>
<span class='interaction-iframe-guide'/>
</p>
</b:if>
</dd>
copy以下代码,然后把上面的代码给替换掉
<dd class='comment-body'>
<b:if cond='data:comment.isDeleted'>
<span class='deleted-comment'><data:comment.body/></span>
<b:else/>
<b:if cond='data:comment.author == data:post.author'>
<p>
<div class='comment-owner'>
<data:comment.body/>
</div>
</p>
<b:else/>
<p><data:comment.body/></p>
</b:if>
</b:if>
</dd>
<b:if cond='data:comment.isDeleted'>
<span class='deleted-comment'><data:comment.body/></span>
<b:else/>
<b:if cond='data:comment.author == data:post.author'>
<p>
<div class='comment-owner'>
<data:comment.body/>
</div>
</p>
<b:else/>
<p><data:comment.body/></p>
</b:if>
</b:if>
</dd>
step 2:
完成之后,寻找
]]></b:skin>
在]]></b:skin>之前,添加以下代码
.comment-owner {
margin:0;
color: #cccccc; /*字体颜色*/
font-size: 10px; /*字体大小*/
line-height: 1.5em;
background-color: #ffffff; /*背景颜色*/
border: 1px dotted #cccccc;
padding:5px;
}
成功了记得告诉我啦XDmargin:0;
color: #cccccc; /*字体颜色*/
font-size: 10px; /*字体大小*/
line-height: 1.5em;
background-color: #ffffff; /*背景颜色*/
border: 1px dotted #cccccc;
padding:5px;
}
囧男有话想说:
留言啦~拜托。