从自定义分类中删除CSS规则

时间:2020-02-10 作者:Henry

我的样式表中有一个通用的CSS规则,如下所示:

#page.grid-parent {
  padding-left: 20px;
  padding-right: 20px
}
我想做的是从我拥有的一些自定义分类法归档页面中删除该规则。

所以,如果我看看body 示例页面的标记我看到:

<body class="archive tax-country term-saudi-arabia term-445 wp-custom-logo wp-embed-responsive cookies-set cookies-accepted post-image-below-header post-image-aligned-center no-sidebar nav-float-right fluid-header separate-containers active-footer-widgets-0 header-aligned-left dropdown-hover elementor-default" itemtype="https://schema.org/Blog" itemscope>
我确信我可以使用“税收国家”作为钩子来隐藏CSS规则。

为了在这些页面中隐藏CSS规则,我尝试了以下方法:

#page.grid-parent.tax-country {
  padding-left: 0px;
  padding-right: 0px
}
。。。。但它不起作用。。。

我还尝试使用#税务国家ID,如下所示:

#tax-country.grid-parent {
  padding-left: 0px;
  padding-right: 0px;
}
仍然没有快乐。。。

1 个回复
SO网友:Tanmay Patel

你可以在CSS下面试试这个。我想,这会奏效的。

.tax-country #page.grid-parent {
  padding-left: 0px;
  padding-right: 0px
}

相关推荐

自定义CSS在主页上工作,但不在新创建的页面上工作

我有这个WP网站http://darius-mann.com/smardigo/ 有很多自定义css。主页上一切正常。这是最后提到的链接。为了完成这个项目,我在这里创建了印记http://darius-mann.com/smardigo/impressum/ 这是一个新的WP页面。但我的自定义CSS不适用!即使这样,也会为所讨论的元素加载和计算。示例:我主要使用“Acumin Pro”作为我的字体系列。在Imprint站点上,即使在菜单中也没有加载。我将此字体用作body标记的主字体,因此应该应用它。正如