Hi I have the multicolumn section on my website. I have 4 columns which I would like on the same line but it limits to 3 per line and then moves the 4th column down. Is there a code I can input that will allow for 4 columns on one line?
Thanks!
Hi I have the multicolumn section on my website. I have 4 columns which I would like on the same line but it limits to 3 per line and then moves the 4th column down. Is there a code I can input that will allow for 4 columns on one line?
Thanks!
Hi @CaliforniaGold ,
Try this code below.
@media screen and (min-width: 990px) {
.multicolumn-list .multicolumn-list__item.grid__item {
width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
}
}
Worked perfectly Thanks!