更改自定义CSS WP中的元素样式

时间:2015-01-24 21:49:40

标签: css wordpress wordpress-theming

我有一个WP,我想改变一种元素风格。

当我用firebug检查时,这就是我在控制台中所拥有的:

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

然后在Styles的右边我有

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

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

我希望min-height为550px;

当我尝试

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

什么都没发生.....

请建议。

2 个答案:

答案 0 :(得分:1)

在样式表中尝试:

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

答案 1 :(得分:0)

尝试:

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

或以内联样式更改最小高度:

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

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

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