Hi Jason,
In order to make the CSS simpler, it’s better to change your current structure which is:
- container
-- container
--- container (bg image)
-- container
--- Headline (h3)
--- link
--- Headline (p)
--- container
--- buttons
to:
- container
-- container
--- container (bg image)
-- container
--- Headline (h3)
--- link
--- Headline (p)
--- container
-- container
--- buttons
Then add this CSS:
.generate-columns-container .dynamic-content-template > .gb-container>.gb-inside-container {
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.generate-columns-container .dynamic-content-template, .dynamic-content-template > .gb-container {
display: flex;
}
.generate-columns-container .dynamic-content-template > .gb-contaienr >.gb-inside-container >*:last-child {
margin-top: auto;
}