We're merging with GenerateBlocks! Learn more here.

Support Forum

Please login to receive premium support.

Support for the free plugin can be found here.

Home Forums Pro Support Column alignments Reply To: Column alignments

#307
Tom
Keymaster

Hmm, you can do this if you have content by using flex-grow:

.wp-show-posts-columns .wp-show-posts-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wp-show-posts-entry-summary, 
.wp-show-posts-entry-content {
    flex-grow: 1;
}

However, you’re not using any content..

Maybe if you applied flex-grow to .wp-show-posts-image?