Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1325026

    my site – https://shawnstoppable.com/home/
    towards the middle of the page, i have 6 columns (3×3) with “learn more” buttons at the bottom of each one, i would like to align the buttons at the bottom of all of them so they will always line up

    I tried the following https://kriesi.at/support/topic/place-full-with-buttons-at-the-bottom-of-column/#post-620885 but it did not work

    Please help

    #1325061

    you can position those buttons absolute.
    Best would be to give to the color-section a unique ID – or a custom class.

    The code below is with your default ID on this : #av_section_2 – but to avoid that every section_2 will do that on other pages – see above.

    #av_section_2 .flex_column .avia-button-wrap {
      position: absolute;
      bottom: 0 !important;
      padding: 20px 0;
    }
    #av_section_2 .flex_column .av_textblock_section {
      padding-bottom: 40px;
    }

    The space now occupied by the button – must be added to the last element in front of it – here the text block – as padding-bottom.

    Maybe you decide to give the headings a min-height for screens larger than the responsive case ( in your installation 768px )
    f.e.:

    @media only screen and (min-width:768px){
      #av_section_2 .flex_column .av_textblock_section h5 {
        min-height: 50px
      }
    }

    only if there are three lines of heading – this will not result in the alignement.

    #1325125

    Hi navindesigns,

    Please try the following in Quick CSS under Enfold->General Styling:

    .page-id-31 #av_section_2 .flex_column .avia-button-wrap {
        position: absolute;
        bottom: 25px;
    }

    Thanks @guenni007 for helping out :-)

    Best regards,
    Rikard

    #1325582

    This works great. Thanks to both of you!

    #1325636

    Hi navindesigns,

    We are happy to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Align buttons at the bottom of columns’ is closed to new replies.