[Resolved] Equal column heights question

Home Forums Support [Resolved] Equal column heights question

Home Forums Support Equal column heights question

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #2359312
    George

    I need to apply equal column heights to the particular blog layout attached. Can you help?

    #2359337
    Ying
    Staff
    Customer Support

    Hi George,

    Try this CSS:

    .one-container.blog .dynamic-content-template >.inside-article > .gb-container, .one-container.blog .dynamic-content-template >.inside-article > .gb-container >.gb-inside-container {
        height: 100%;
    }

    You may set the white background color to the parent GB container.

    #2359345
    George

    Thanks Ying, it worked. How can I set the buttons to bottom-align?

    #2359939
    Ying
    Staff
    Customer Support

    Did you remove the site link? Can you attach it again?

    Let me know ๐Ÿ™‚

    #2359979
    George

    Ah sorry, didn’t notice. Re-attached the link.

    #2360063
    Ying
    Staff
    Customer Support

    Try this:

    .dynamic-content-template .gb-grid-wrapper>.gb-grid-column>.gb-container:not(.gb-has-dynamic-bg) >.gb-inside-container {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .dynamic-content-template .gb-grid-wrapper {
        height: 100%;
    }
    #2360854
    George

    Thanks, Ying, it doesn’t seem to be working.

    #2360931
    Fernando
    Customer Support

    Try adding this:

    .blog .dynamic-content-template > .inside-article > .gb-container {
        height:100%;
    }
    #2361264
    George

    It doesn’t work. Here is what I have now:

    .dynamic-content-template .gb-grid-wrapper>.gb-grid-column>.gb-container:not(.gb-has-dynamic-bg) >.gb-inside-container {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .dynamic-content-template .gb-grid-wrapper {
        height: 100%;
    }
    
    .blog .dynamic-content-template > .inside-article > .gb-container > .gb-grid-wrapper {
        height:100%;
    }

    Reminder: I want equal heights and bottom-aligned buttons.

    #2361839
    Ying
    Staff
    Customer Support

    I don’t see any updated CSS on your site, maybe still cached.

    These are the CSS I use and it seems working fine:
    https://www.screencast.com/t/xPFCpxJNW

    .one-container.blog .dynamic-content-template >.inside-article > .gb-container, .one-container.blog .dynamic-content-template >.inside-article > .gb-container >.gb-inside-container {
        height: 100%;
    }
    .dynamic-content-template .gb-grid-wrapper>.gb-grid-column>.gb-container:not(.gb-has-dynamic-bg) >.gb-inside-container {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .dynamic-content-template .gb-grid-wrapper {
        height: 100%;
    }
    
    .gb-grid-column-b2462283 {
        max-height: 250px;
    }
    
    .gb-grid-wrapper>.gb-grid-column-e0fef27e {
        flex: 1;
    }
    
    .dynamic-content-template .gb-grid-wrapper {
        flex-direction: column;
    }
    #2362666
    George

    Yeah, that works Ying, thanks!

    #2363142
    Ying
    Staff
    Customer Support

    No problem ๐Ÿ™‚

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