在自定义 css WP 中更改元素样式

Change element style in custom css WP

我有一个 WP,我想在其中更改元素样式。

这是我使用 firebug 检查时控制台中的内容:

<div class="et_pb_container clearfix" style="min-height: 400px;">

然后在样式的右边我有

element.style {
min-height: 400px;
}

如何在自定义 CSS 编辑器中更改 element.style?

我希望最小高度为 550px;

当我尝试

et_pb_container.clearfix{
min-height: 550px;
}

没有任何反应......

请指教

尝试:

.et_pb_container.clearfix{
    min-height: 550px !important;
}

或者改变行内样式的最小高度:

<div class="et_pb_container clearfix" style="min-height: 550px;">

内联样式通常优先于 css 样式表,除非您指定 !important 关键字。

http://css-tricks.com/override-inline-styles-with-css/

在您的样式表中试试这个:

.et_pb_container.clearfix[style] {
  min-height: 550px !important;
}