有人可以帮我解决如何从我的网站www.startfurnishing.com上我的精选帖子中禁用“睫毛/视图”图标的问题吗?

时间:2019-06-26 11:21:26

标签: css wordpress

我有一个网站www.startfurnishing.com 一个自由职业者为我设计了这个网站。现在,问题是他无法到达。我网站的每个精选帖子上都有一个日期图标和pafe视图图标。

有人可以帮助我如何从我的网站www.startfurnishing.com上的特色帖子中禁用“睫毛/视图”图标吗?

我检查了源代码,该类是“ Total-views”。但是我不知道在wordpress中禁用它的地方。不确定将“ Display:None” CSS代码放在wordpress中的位置。

谢谢!

<h3 class="entry-title"><a href="http://startfurnishing.com/catalogues-are-displayed-at-a-store/" rel="bookmark">Top Home furnishing eCommerce websites of India</a></h3>                                    </header>
                                    <div class="article-meta clearfix">
                                        <span class="byline"><span class="author vcard"><span class="screen-reader-text"> </span><span class="by">By</span><a class="url fn n" href="http://startfurnishing.com/author/admin/">admin</a></span></span><div class="posted-on post-date"><span class="author-on">on</span><span class="screen-reader-text"> </span><a href="http://startfurnishing.com/catalogues-are-displayed-at-a-store/" rel="bookmark"><time class="entry-date published" datetime="2019-06-25T23:09:29+00:00">June 25, 2019</time><time class="updated" datetime="2019-06-26T06:38:24+00:00">June 26, 2019</time></a></div> <div class="main-view-like">
                    <div class="total-view">
                                <i class="fa fa-eye-slash"></i> 59          </div>
                    </div>

                                    </div>

1 个答案:

答案 0 :(得分:0)

Add this css.

.main-view-like {
    display: none;
}

.posted-on::after {
 display: none;
}