0

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

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

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

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

我怎样才能做到这一点?

4

2 回答 2

1

将此添加到您的 css 中:

.sidebar-content-sidebar #inner 
{
   background: none !important;
}
于 2013-08-13T15:10:43.353 回答
0

尝试使用 :not 伪选择器来排除具有特定类或 ID 应用于正文标记的页面(例如 '#plugin-bg-disabled')

body:not(#plugin-bg-disabled) .sidebar-content-sidebar #inner {
  background: url(images/inner-scs.png);
}
于 2013-08-13T15:13:02.530 回答