剛才把Add Comment弄好,原來以為很簡單,因為這個物件是靠左對齊,直接用text-indent就可以了

所以我寫了這段CSS加在自訂版型的後面。
.blog-comments-bottom{
text-indent:-110px;
overflow:hidden;
}


.blog-comments-bottom a:after{
content:"  評論這篇文章";
}

結果回預覽發現只剩下"篇文章"了,發現原來在編輯版面時的介面是英文,預覽是簡體中文,所以變短了

加上幾個空格,把text-indent調整好,基本上會正常顯示,英文介面會跑到右邊,因為英文比較長。
.blog-comments-bottom{
text-indent:-90px;
overflow:hidden;
}


.blog-comments-bottom a:after{
content:"   評論這篇文章";
}
希望官方還是弄個繁體版比較好,但是官方應該不會理會我這種不付錢的客人。

Comments are closed.