Site logo

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

Home Forums Support [Resolved] How to display different title length post with the same size.

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

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2430434
    Sato Mori

    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.

    #2430474
    Fernando
    Customer Support

    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.

    #2430487
    Sato Mori

    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.

    #2430498
    Fernando
    Customer Support

    You’re welcome, Quan!

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.