I’ve used this method to make my columns of equal height: https://michaelbourne.ca/create-columns-equal-heights/286/. It works, but I cannot get the buttons to align at the bottom of the columns. See about half way down the home page of http://bigriverswaterpark.com. Can you tell me what I’m doing wrong?
Hi @mbachrach,
Please also add this custom CSS:
.flexmethod .x-column {
position: relative;
padding-bottom: 80px;
}
.flexmethod .x-column a.x-anchor.x-anchor-button {
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 25px;
}
Hope that helps and thank you for understanding.
that worked. thanks!
You’re welcome, mbachrach.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.