Is there a way to set the grid items to be equal height (so they all align, regardless of the content in them) rather than “masonry”? The current options don’t allow a true “grid” layout that I can see.
For anyone looking to obtain a perfect grid (i.e. all item heights the same) with the filter shortcode, it’s of course possible: simply hardcode the title h2 container height to a determined amount and you can get a grid.
This worked for me:
@media only screen and (min-width: 640px) { .pgafu-post-grid-main .pgafu-columns .pgafu-post-grid h2 { max-height: 147px; height: 147px !important; overflow: hidden;
} }
Viewing 6 replies - 1 through 6 (of 6 total)
The topic ‘Grid items equal height’ is closed to new replies.