从主页删除类



我只想从主页上删除以下内容!我可以访问页面编辑器,但不确定在页面上的CSS编辑器中插入什么。
我想删除以下内容:

<div class="fs_img_header header_video_fs_view" style="width: 1028px; height: 789px;"><div class="stat_img_cont" style="background-image: url();background-size: cover;background-position: center center;"></div></div>
.fs_img_header, .header_video_fs_view, .stat_img_cont {
display: none;
}

如果你使用的是Wordpress,而css没有效果:

.fs_img_header, .header_video_fs_view, .stat_img_cont {
display: none !important;
}

只显示在主页上使用以下插件(简单的方法):https://de.wordpress.org/plugins/css-javascript-toolbox/

使用这个插件,你可以选择在哪里显示你的自定义css(在本例中是主页)。

如果有帮助,请告诉我。

最新更新