1
任何人都可以告訴我更好的選擇,從博客中刪除Subscribe to Post(Atom),而不是隱藏鏈接,使其與背景顏色相同?如何從博主中刪除Subscribe to Post(Atom)?
任何人都可以告訴我更好的選擇,從博客中刪除Subscribe to Post(Atom),而不是隱藏鏈接,使其與背景顏色相同?如何從博主中刪除Subscribe to Post(Atom)?
找到模板的代碼這些塊:
<b:includable id='feedLinks'>...Code here..</b:includable>
<b:includable id='feedLinksBody' var='links'>...Code here...</b:includable>
並替換它們與此:
<b:includable id='feedLinks'/>
<b:includable id='feedLinksBody' var='links'/>
你並不需要刪除,說不定哪天你可以再次使用它。也許只是不顯示,你可以使用CSS display: none
.post-feeds, .blog-feeds {
display: none;
}
這對我有效。要在Blogger中查找CSS,請編輯主題>自定義>高級>在子菜單SCROLL DOWN中添加CSS,然後插入上面的代碼。 – rixter