Hello,
I am trying to make that the multicolumn on mobile does not need to be manually swiped, but instead it automatically changes to the next column… without the person physically swiping it.
How can I accomplish this on the craft theme?
Hello,
I am trying to make that the multicolumn on mobile does not need to be manually swiped, but instead it automatically changes to the next column… without the person physically swiping it.
How can I accomplish this on the craft theme?
styles.css or theme.css.@media only screen and (max-width: 767px) {
/* Adjust the max-width value as needed */
.your-multicolumn-section {
column-count: 2; /* Change the number of columns as desired */
column-gap: 20px; /* Adjust the column gap as desired */
}
}