I would also like to have my Boxed Columns a
fixed height. Can you share the method for doing so? Is it as simple as
creating a extra class name for the column and then adding the example
below to the Custom CSS box on the Salient Options panel? If so, I
couldn't get it to work.
This is what was suggested for me by Nectar and works a treat. You do need to be sure to put the extra class name in the row that contains the tabs though, that tripped me up to begin.
Hey Nectar gang,
I would also like to have my Boxed Columns a fixed height. Can you share the method for doing so? Is it as simple as creating a extra class name for the column and then adding the example below to the Custom CSS box on the Salient Options panel? If so, I couldn't get it to work.
.extra-class-name{
min-height:230px;
}
Hey Mike!
For fixed height you need to put 'height:230px' .
Cheers
ThemeNectar Support Team
.extra-class-name div.wpb_wrapper {
min-height: 230px;
}
This is what was suggested for me by Nectar and works a treat. You do need to be sure to put the extra class name in the row that contains the tabs though, that tripped me up to begin.
Thanks, that worked great!