I have a website built in Helix Ultimate. The client did not want Page Builder.
I am trying to get the columns in the Bottom position to be of equal lengths, even though the columns may not have the smae amount of content.
I have been following the W3 Schools turoiral here (https://www.w3schools.com/howto/howto_css_equal_height.asp), which has worked in the past.
.col-container {
display: table; / Make the container element behave like a table /
width: 100%; / Set full-width to expand the whole page /
}
.col {
display: table-cell; / Make elements inside the container behave like table cells /
}
and for responsive
/ If the browser window is smaller than 600px, make the columns stack on top of each other /
@media only screen and (max-width: 600px) {
.col {
display: block;
width: 100%;
}
}
I've switched out .col-container and .co for #sp-bottom .sp-module. It does not work.
What am I doing wrong?