Reply To: Align Buttons

Home Forums Support Align Buttons Reply To: Align Buttons

Home Forums Support Align Buttons Reply To: Align Buttons

#228071
Tom
Lead Developer
Lead Developer

Hi there,

This isn’t really possible without using very hacky CSS.

If you need them to be perfectly aligned, your best bet is making the titles/content above the same height.

One of the hacky options is making the buttons absolute positioned:

.my-button-class {
    position: absolute;
    bottom: 0;
}

But the results will be inconsistent, especially on mobile and smaller screens.