如何在没有评论的情况下在你的tumblr博客上做笔记?

时间:2015-02-22 16:10:37

标签: css tumblr tumblr-themes

所以基本上,我不知道如何制作它,以便只有那些喜欢并在我的博客上发帖的人的图标显示。

基本上,我正在寻找的是这样的:

enter image description here

而不是像这样:

enter image description here

我试过寻找有关如何执行此操作的教程,但我似乎无法找到任何教程。

1 个答案:

答案 0 :(得分:1)

您可以使用CSS规则隐藏这些文字:

HTML:

<div id="postnote">
    {PostNote}
</div>

CSS:

#postnote {
    width: 700px; //width of your notes
}

.notes li { 
    float: left; //or display: inline-block, this rule align icons next to each other
}

.notes .action { 
    display: none; //hide text
}