Timothy's Dev Stuff

A collection of code snippets and other developer things.

Align Last Item in Elementor Columns

Add this to the custom CSS in the advanced menu for the columns you want this to apply to (requires Elementor Pro).

selector > div > div {
        flex-direction: column;
}

selector .elementor-widget-wrap div:last-child {
        margin-top: auto;
}
Alternately, add a custom CSS class to the elements so you can target what you need. Ultimately, the column element will need flex-direction: column and its last-child will need margin-top: auto. This method may also be used if the above method doesn’t work for some reason (which I have had happen).