Feature Box set width and height
I'm using a couple of feature boxes on my site and I'd like to know if it's possible to set the width and height for each box.
At the moment each boxes overall size depends on how much text I add to them.
Is the a way using css etc to set a default size
Here's my page where I'm using the boxes. I'd like them all to be the same size.
[Links visible only for registered users]
Many thanks in advance
Comments
you could only regulate this with custom css and minimmum height. The more content there is the more height you have to add. And the content will not be vertically centered.
.feature_box .feature_box_wrapper {min-height: 200px !important;
display: block !important;
}