Hi David,
It seems an issue preset. Thanks for taking the time to post it.
The solution would be simple in fact
Open assets/ks-sections.css
Find:
.ks-simple-collections-list {
display: inline-flex;
flex-wrap: nowrap;
overflow: auto;
overflow-y: hidden;
padding: 0 1rem 1rem;
margin-bottom: -1rem;
}
Replace it with:
.ks-simple-collections-list {
display: flex; /* Changed */
flex-wrap: nowrap;
overflow: auto;
overflow-y: hidden;
padding: 0 1rem 1rem;
margin-bottom: -1rem;
}
However, a simple fix would be to add this CSS code to the section's settings.
.ks-simple-collections-list {
display: flex;
}
