Okay
  Public Ticket #176332
Boxed Content Fixed Height , again
Closed

Comments

  • mike started the conversation

    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;

    }


  •  8,838
    Tahir replied

    Hey Mike!

    For fixed height you need to put 'height:230px' .

    Cheers


    ThemeNectar Support Team 

  • Steve replied

    .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.

  • mike replied

    Thanks, that worked great!