Display Multiple Columns in a Single column on Mobile View

I would like to request that the multiple columns currently displayed in separate Column on the mobile view be arranged in a single Column, similar to how they appear in the desktop view. This will help maintain a consistent layout across devices and improve the user experience.

Hi @Adesh1

It would look like this if you make it be arranged in a single column as as desktop

But you could make it appear single per column by adding this code to Custom CSS of that section

@media (max-width: 767px) {
    .flexible-layout, .fixed-layout {
        grid-template-columns: repeat(1, 1fr);
    }
}