Hi there,
I have added the following to my site’s theme option> CSS to create columns of the same height with a space between the columns when they stack in small/mobile screen view:
.sameheight .x-container {
display: flex;
}
@media (max-width: 767px) {
.matchup .x-column.x-1-3 {
margin-bottom: 45px;
}
.matchup .x-column.x-1-3:last-of-type {
margin-bottom: 0;
}
}
However, when I add class ‘same height’ to the section, the 3 columns are not responsive in small/mobile screens. The class ‘matchup’ works alone when the columns are not the same height.
Can you help re what to do to have the same height columns responsive + have the gap between them when they stack.
Thanks!
K