I am using WordPress 3.4.2 with the Graphene Theme 1.8.2 with a Child Theme.
I display a post in the slider and have the following code in Custom css
.featured_slider #slider_root {
background: #fff;
margin: 0 auto;
overflow: hidden;
position: relative;
height: 425px;
width: 100%;
}
The height of 425px seems to cover the longest post but us too deep for the shorter posts.
Is it possible to have a variable height?
I have tried
min-height: 200px;
max-height: 425px:
but it doesn't seem to work.
