Site logo

Archived topic

How to display different title length post with the same size.

3 replies · Started by Sato Mori on November 24, 2022

Viewing posts 1–4 of 4

I apologize if there are grammatical errors, English is not my mother tongue.

How to make articles with titles of different lengths of equal size.
If it is small picture, please visit my home page to understand.
Many thanks.

Hi Quan,

Being able to align Grid columns will be a feature introduced in the next GenerateBlocks update. For now, you'll need custom CSS.

You can try adding this through Appearance > Customize > Additional CSS:

.gb-container.gb-container-3fe3db3a, .gb-container.gb-container-3fe3db3a > .gb-inside-container {
    height: 100%;
}

.gb-container.gb-container-3fe3db3a > .gb-inside-container {
    display: flex;
    flex-direction: column;
}

.gb-container.gb-container-e2ae5b7f .gb-button-wrapper.gb-button-wrapper-30b7c093 {
    margin-top: 0;
}

.gb-container.gb-container-e2ae5b7f {
    flex-grow: 1;
    min-height: 350px;
}

.gb-container.gb-container-e2ae5b7f > .gb-inside-container {
    display: flex;
    height: 100%;
    align-items: flex-end;
    justify-content: flex-end;
}

By the time GenerateBlocks version 1.7.0 comes out, you can build such layouts without any code needed.

Wow. It worked. Thank you so much. I can't believe it took me all day to search on google but finished it all after 30 minutes creating a new topic LOL.
Thank you so much Fernando.
Have a nice day.

You're welcome, Quan!

This archived topic is closed to new replies.