如何禁用wordpress插件的css规则

时间:2013-08-13 15:05:35

标签: css wordpress

我正在使用Wordpress主题和插件。

该插件使用主题样式表,这很好,除了有一个规则我想仅为插件页面禁用

.sidebar-content-sidebar #inner {
background: url(images/inner-scs.png);
}

我希望禁用上述规则,因为背景图片不适用于那些页面。

我该怎么做?

2 个答案:

答案 0 :(得分:1)

将此添加到您的css:

.sidebar-content-sidebar #inner 
{
   background: none !important;
}

答案 1 :(得分:0)

尝试使用:not pseudo-selector排除应用于 body 标记的特定类或ID的网页(例如'#plugin-bg-disabled')

body:not(#plugin-bg-disabled) .sidebar-content-sidebar #inner {
  background: url(images/inner-scs.png);
}