portfolio containers size

Sometimes the title or description of the portfolio is a bit longer, which takes everything out of context.


Is it possible to make these portfolio containers the same length using css or betheme settings?

Comments

  • Hello,

    Check this CSS code:

    .portfolio_wrapper .portfolio-item .desc .desc-wrapper{
     min-height: 70px;
    }
    

    Put it in Betheme -> Theme options -> Custom CSS & JS -> CSS.


    Best regards

  • It seems to do something Phil, but it is not yet the solution. Even if I make them 200px, they will get longer but the containers keep jumping for the one where the title and description are longer than the rest. Do you have another proposal?

  • You can check the code from below or try to put titles and excerpts with similar lengths.

    .portfolio_wrapper .portfolio-item .desc .desc-wrapper{
     min-height: 140px;
    }
    

    Best regards

  • Glad you helped me along. I'm using it now and it works perfectly.

    .portfolio_wrapper .portfolio-item .desc .desc-wrapper{

     min-height: 70px;

    }

    .portfolio-item .entry-title {

      min-height: 50px;

    }

Sign In or Register to comment.