Hi there,
On this new page: hidden link
Toolset support kindly offered help regarding making a 3 col for desktop go to a 2 col for tablet.
However, only just noticed the grid items don't flow right, and spaces are created.
See attached, on tablet there is a space.
Now this never happens on these pages of which we have many: hidden link
These always flow and there is never a space.
Can anyone offer a suggestion on remedying this please?
I have tried changing the expert length however what works for one, wont work for another.
Many thanks.
Hi Pete,
Thank you for contacting us and I'd be happy to assist.
Those extra spaces seem to be the result of variable heights of the result item blocks.
To make sure they have equal heights, you can include a special class "equal-heights" to the wrapping div with the class "row":
<div class="row equal-heights">
And then include the following custom CSS code in the view:
.row.equal-heights {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
}
.row.equal-heights > [class*='col-'] {
display: flex;
flex-direction: column;
}
I hope this helps.
regards,
Waqar