Hi, I’m wondering how I can make the two columns in section 3 be an equal height to each other at all times? See here: https://screencast.com/t/WZzoa5z8vgQ
Thanks
Hi, I’m wondering how I can make the two columns in section 3 be an equal height to each other at all times? See here: https://screencast.com/t/WZzoa5z8vgQ
Thanks
Hi @threeoten,
Thanks for writing in!
The only way to do this is using custom CSS.
Looking at the content you have in the columns I will suggest you few codes to use which will help you to make the column equal height.

$el {
min-height: 430px;
position: relative;
}
$el {
position: absolute;
bottom: 0px;
min-height: auto !important;
}
The code suggested looking at your current content in the column. If your content changes the code needs further adjust ment. We can’t help more on this as this is something out of our theme support scope.
If you would like to learn CSS, I am sharing few resources that you take a look to get started with CSS and an interesting tool that you can use to speed up the development process.
I recommend you to watch following video that will help you to get started with CSS.
Sometimes it can get a bit difficult to find out the right selector to be able to write the required CSS codes. A handy tool that can help you in this is Google Chrome dev tools. I am sharing the resource that you can refer to get started with dev tools.
https://developers.google.com/web/tools/chrome-devtools/css/
Thanks.
Thank you! But I can’t figure out why the element CSS above makes the button in the 1st column sit outside of the column to the right… how might I get it to sit where it should like in the 2nd column? (see: https://screencast.com/t/Ocz9Y7Dju)
Thanks
Hi There,
Thanks for writing in again!
Please update the button element CSS to this.
$el {
position: absolute;
bottom: 0px;
min-height: auto !important;
left: 0px;
}
Hope that helps!
Thanks
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.