从CSS中删除文本

时间:2017-06-22 22:39:51

标签: html css wordpress text

我正在使用Wordpress,我想从页脚中的框中删除作者信息。 这是该框的HTML代码:

<footer class="entry-footer clearfix">
: :before
<span class="entry-cats">
<span class="entry-label">
<i class="fa fa-tag">
: :before
</i>
Categorie:
</span>
<a href="http://ec2-52-57-169-182.eu-central-1.compute.amazonaws.com/categoria-quale-scegliere/">Quale scegliere</a>
</span>
<!--End .entry-tags-->
<span class="entry-separator">
: :before
/
</span>
<a class="entry-comments" href="#">Nessuna risposta</a>
<span class="entry-separator">/</span>
di
<a class="entry-author" href="http://ec2-52-57-169-182.eu-central-1.compute.amazonaws.com/author/user/">Admin</a>
: :after
</footer>

这是形象 Footer box

我刚刚在CSS中删除了作者姓名:

.entry-author{
display:none !important;
}

现在我需要删除&#34; Nessuna risposta&#34;之间的斜杠。还有“&#34; di&#34; (英文&#34; by&#34;)。 我不知道该怎么做,因为这是文字而不是课。 Firefox Inspector将文本显示为#text

如果您想直接在网站上观看,请转到here,然后点击该页面。

感谢。

1 个答案:

答案 0 :(得分:2)

斜杠是a.entry-comments + span.entry-separator: { display: none; }

对于单词“di”,最好将其包装在一个范围内并指定一个类,您可以使用display: none;隐藏它。