I have a WP where i want to change an element style.
This is what i have in console when i inspect with firebug:
<div class="et_pb_container clearfix" style="min-height: 400px;">
And then on the right in Styles i have
element.style {
min-height: 400px;
}
How can i change the element.style in the custom CSS editor?
I want min-height to be 550px;
When i try with
et_pb_container.clearfix{
min-height: 550px;
}
Nothing happens…..
Please advice.
Try this in your stylesheet:
Try:
Or change min-height in inline style:
Inline styles usually take precedence over css stylesheets, unless you specify !important keyword.
http://css-tricks.com/override-inline-styles-with-css/