Reply To: CSS alignment question for masonry

Home Forums Support CSS alignment question for masonry Reply To: CSS alignment question for masonry

Home Forums Support CSS alignment question for masonry Reply To: CSS alignment question for masonry

#71686
Tom
Lead Developer
Lead Developer

You could use CSS to match the height right now, but it will change depending on the height of the post image and content as you update.

For example, this code should work right now:

@media screen and (min-width: 769px) {
      .masonry-container .type-post:nth-of-type(2) {
            max-height: 490px;
            overflow: hidden;
      }
}

However, when you add new posts, this CSS will most likely have to change.