Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #1051524
Quickfinders with Equal Height
Closed

Comments

  •  2
    threepillars started the conversation

    I have buttons turned on for quickfinders and I wondering if there's a way to make a set of them on a page all the same height and have the buttons display so they're aligned. Right now they're at different heights based on the description text length.

  •  7,092
    Oliver replied

    HI!

    pls. add link to the page and some screenshots.

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  •   threepillars replied privately
  •  7,092
    Oliver replied

    HI!

    pls. use following css:

    .quickfinder-item-text {
        min-height: 150px;
    }

     

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  •  2
    threepillars replied

    Looks like that'll work for the desktop and view and I'll just have to adjust it for different breakpoints. Thanks!

  •  7,092
    Oliver replied

    Sorry?

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  •  2
    threepillars replied

    This is the preview for iPad layout. Since the text blocks have gotten longer (due to page width squishing the divs) the min-height code isn't tall enough. Thus I'll have to use a media-query to adjust for this screen width.

    I shouldn't have any trouble with this though.

  •  7,092
    Oliver replied

    You can set min heigth for any screen resolution with next css:

    @media (max-width: 1000px) {
    .quickfinder-item-text {
        min-height: 150px;
    }
    }
    @media (max-width: 768px) {
    .quickfinder-item-text {
        min-height: 150px;
    }
    }
    

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver