Hey,
There is actually a function for this already. From the row layout block toggle. See screenshot: https://ibb.co/cFCyCjw
Does that do what you’re after?
Hannah
Hi Hannah,
no that doesn’t work for me. I aligns’s the entire collumn and I only want to align the advanced button to the botom of the bottom
Here is a testpage;https://stefringoot.com/stef-ringoot-is-illustrator-cartoonist/
The buttons should be all on the same hight.
Hey @stefring the way css works there isn’t a way to add vertical alignment to a button block because vertical alignment is defined by the container and type of display settings.
I’m working on an update for the info box block which will better allow you to set min heights on the content so you can align across areas.
A workaround is to add css like this:
.page-id-5054 .wp-block-kadence-rowlayout .kt-inside-inner-col {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.page-id-5054 .wp-block-kadence-rowlayout .wp-block-kadence-advancedbtn {
flex-grow: 1;
display: flex;
justify-content: center;
align-items: flex-end;
}
That will only apply on that page.
Ben
@britner thanks for that css code. It works for me!
Greetings from holland
Stef Ringoot