We currently have 3 columns all set to be the same height & the Vertical Alignment on the column set to top.
Is it possible to align buttons inside the columns to the bottom?
We’ve tried
.valign_bottom .avia-button {
vertical-align: bottom !important;
}
The valign_bottom the class on the button
But it doesn’t seem to have any effect.
The site is currently on localhost but here is a screenshot
Any help would be much appreciated
Hey ste_thumbs,
You could try to put them in an absolute position:
.valign_bottom .avia-button {
position:absolute;
bottom:0;
}
You might also have to give the container element a min-height.
Best regards,
Rikard
Rikard,
I’ve tried your code. It doesn’t work for me.
Here is a screenshot of my site with inspector open:
The columns are inside a color section and I set a minimum height to it.
Please help!
.valign_bottom .avia-button {
position:absolute !important;
bottom:0 !important;
}
.avia-button-wrap .avia-button-center .avia-builder-el-4 .el_after_av_textblock .avia-builder-el-last {
position:absolute !important;
bottom:0 !important;
}
.avia-button-wrap .avia-button-center .avia-builder-el-7 .el_after_av_textblock .avia-builder-el-last {
position:absolute !important;
bottom:0 !important;
}
The other code is because I was trying to target buttons individually to see if it would work if I targeted elements more specifically. Didn’t work.