动态隐藏Wordpress页面上的部分

时间:2018-07-10 12:03:43

标签: php html css wordpress

我的网站www.fashionsuggest.in上有一个浮动的社交栏

我的wordpress帖子上只需要这个社交栏,并且希望将其从所有页面中删除。

总共只有5或6页。有人可以提出解决方案以隐藏这些页面上的浮动社交栏吗?

Please refer the attachment to see a screenshot of the social bar

1 个答案:

答案 0 :(得分:1)

您可以尝试以下CSS代码。

.page-template-default .kiwi-floating-bar { display: none; }
.post-template-default .kiwi-floating-bar { display: block; }

如果没有反应,请尝试使用!important。

.page-template-default .kiwi-floating-bar { display: none !important; }