[Support request] Column Spacing and element spacing within columns

Home Forums Support [Support request] Column Spacing and element spacing within columns

Home Forums Support Column Spacing and element spacing within columns

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #794965
    Tim Zurawski

    This may be a question for elementor, but spacing on my columns seem to jump all over the place row to row. I do not currently have pro version (just expired). So I am trying to figure out why 3 rows of 4 columns have dissimilar spacing. should custom css be added here, and if so, does anyone have the css?

    Also need to space the elements inside each widget. icon, icon heading, text and more button.

    Need them to be unified and allow for growth.

    http://www.trendstrategics.com

    thank you in advance

    #794993
    David
    Staff
    Customer Support

    Hi there,

    not seeing this on the front end? 3 rows look well aligned to me. Cleared browser caches?

    #795013
    Tim Zurawski

    ah, ok, how about the buttons. How can we align them bottom?

    thank you David

    #795297
    David
    Staff
    Customer Support

    If you search on YouTube for: Elementor – aligning elements
    You will find one of my old videos (FlintSkin) – which provides some ways to align.
    One of the methods is – add this CSS to Additional CSS.

    .db-flex-column .elementor-widget-wrap {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    Then in elementor select each column and on the advanced tab add the db-flex-column to the CSS Classes.

    #795975
    Tim Zurawski

    David,
    How can I combine 2 different css classes to same element
    This—
    db-grid-column

    .db-grid-column .elementor-widget-wrap {
    display: grid;
    grid-template-rows: 100px 60px 4fr 1fr;
    }

    And This—

    db-flex-column

    .db-flex-column .elementor-widget-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }
    Thank you
    timz
    <><

    #796019
    David
    Staff
    Customer Support

    You can’t apply the two different grids ie. Flexbox and CSS Grid to the same element. CSS Grid will override Flexbox.
    Flexbox is the simpler method of the two for aligning the content.

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