Pages

Subscribe:

Labels

2014年7月20日 星期日

怎麼開啟Blogger的嵌套式留言(threaded comments)? (包含自訂版型怎麼安裝)



嵌套式留言也有人叫階層式留言,總之就是可以回覆留言的功能。
#more#
進入Blogger的後台,到你要開啟嵌套式留言的網誌的「設定」中的「其他」裡「允許網誌資訊提供」改成「完整」,然後再把「文章和留言」裡的「留言位置」改成「嵌入」

如果你使用的是預設版型,一定會出現嵌套式留言,但如果是自訂版型,而且沒有出現的話,必須到後台的「範本」「編輯HTML」修改html。
用搜尋去找到這段
<b:if cond='data:blog.pageType == "item"'>
<b:include data='post' name='comments'/>
</b:if>

並且替換成下面這段
<b:if cond='data:blog.pageType == "static_page"'>
<b:if cond='data:post.showThreadedComments'>
<b:include data='post' name='threaded_comments'/>
<b:else/>
<b:include data='post' name='comments'/>
</b:if>
</b:if>
<b:if cond='data:blog.pageType == "item"'>
<b:if cond='data:post.showThreadedComments'>
<b:include data='post' name='threaded_comments'/>
<b:else/>
<b:include data='post' name='comments'/>
</b:if>
</b:if>

然後「儲存範本」就完成了。
留言的樣式用CSS修改,可以從進入後台的「範本」「自訂」「進階」的「新增CSS」覆寫或加入新的CSS,或是直接在「編輯HTML」增修。
我的CSS是這樣
.comments {
  clear: both;
  margin : auto;
  margin-top: 10px;
  margin-bottom: 0px;
  line-height: 1em;
  width: 570px;

 text-align:left;
}
.comments .comments-content {
  font-size: 12px;
  margin-bottom: 16px;
  font-family: Verdana;
  font-weight: normal;
  text-align:left;
  line-height: 1.4em;
}
.comments .comment .comment-actions a {
  cursor:pointer;
  color:#3366d5;
  padding:2px 3px; margin-right:10px;
  -moz-border-radius:6px;
  -webkit-border-radius:6px;
  border-radius:6px;
  font:9px sans-serif;

}
.comments .comment .comment-actions a:hover {
  text-decoration: none;
  color: #cc6600;
  text-decoration:underline;
}
.comments .comments-content .comment-thread ol {
  list-style-type: none;
  padding: 0;
  text-align: none;
}
.comments .comments-content .inline-thread {
  padding: 0.5em 1em;
}
.comments .comments-content .comment-thread {
  margin: 8px 0px;
}
.comments .comments-content .comment-thread:empty {
  display: none;
}
.comments .comments-content .comment-replies {
  margin-top: 1em;
  margin-left: 40px;
  font-size:12px;
  background:#eeeeee;
}
.comments .comments-content .comment {
  margin-bottom:16px;
  padding: 5px 10px 8px 5px;
  background:#eeeeee;

}
.comments .comments-content .comment:first-child {
  padding-top:16px;
}
.comments .comments-content .comment:last-child {
  border-bottom:0;
  padding-bottom:0;
}
.comments .comments-content .comment-body {
  position:relative;
}
.comments .comments-content .user {
  font-style:normal;
  font-weight:bold;
}
.comments .comments-content .icon.blog-author {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin: 0 0 -4px 6px;
}
.comments .comments-content .datetime {
  margin-left:6px;
}
.comments .comments-content .comment-header,
.comments .comments-content .comment-content {
  margin:0 0 8px;
}
.comments .comments-content .comment-content {
  text-align:none;
}
.comments .comments-content .owner-actions {
  position:absolute;
  right:0;
  top:0;
}
.comments .comments-replybox {
  border: none;
  height: 250px;
  width: 100%;
}
.comments .comment-replybox-single {
  margin-top: 5px;
  margin-left: 48px;
}
.comments .comment-replybox-thread {
  margin-top: 5px;
}
.comments .comments-content .loadmore a {
  display: block;
  padding: 10px 16px;
  text-align: center;
}
.comments .thread-toggle {
  cursor: pointer;
  display: inline-block;
}
.comments .continue {
  cursor: pointer;
}
.comments .continue a {
  display: block;
  padding: 0.5em;
  font-weight: bold;
}
.comments .comments-content .loadmore {
  cursor: pointer;
  max-height: 3em;
  margin-top: 3em;
}
.comments .comments-content .loadmore.loaded {
  max-height: 0px;
  opacity: 0;
  overflow: hidden;
}
.comments .thread-chrome.thread-collapsed {
  display: none;
}
.comments .thread-toggle {
  display: inline-block;
}
.comments .thread-toggle .thread-arrow {
  display: inline-block;
  height: 6px;
  width: 7px;
  overflow: visible;
  margin: 0.3em;
  padding-right: 4px;
}
.comments .thread-expanded .thread-arrow {
  no-repeat scroll 0 0 transparent;
}
.comments .thread-collapsed .thread-arrow {
  no-repeat scroll 0 0 transparent;
}
.comments .avatar-image-container {
  float: left;
  width: 36px;
  max-height: 36px;
  overflow: hidden;
}
.comments .avatar-image-container img {
  width: 36px;
}
.comments .comment-block {
  margin-left: 48px;
  position: relative;
}

0 意見:

張貼留言