[Support request] buttons aligned

Home Forums Support [Support request] buttons aligned

Home Forums Support buttons aligned

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1754917
    Juan

    How can I align the buttons shown in the image?

    I want the three buttons to be aligned at the same height or on the same imaginary line.

    Image

    This is the website if anyone can check it

    #1755151
    David
    Staff
    Customer Support

    Hi there,

    thats actually a question for the GenerateBlocks support forum.
    But here is some CSS you can add that will align the last element in a GB Grid column:

    .align-last-element .gb-grid-column>.gb-container>.gb-inside-container {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .align-last-element .gb-grid-column>.gb-container>.gb-inside-container>*:last-child {
        margin-top: auto;
    }

    Then select the Grid container ( thats the grid not the columns within ) and in Advanced > Additional CSS Class(es) add: align-last-element

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