Mobile display more than 1 column

hello,

i need to display a section with 2 and another with 3 column instead of just 1 (as the default now).

all the threads i found here (#47720 and #41047) i have tried and did not work out for me.

using the latest pro version.

live: https://gelenkalbin.de

and

thanks
oli

Hi Oli,

Thank you for reaching out to us. Try giving your Row a class stay-inline that contains the columns and then add the following code in the Theme Options > CSS:

@media screen and (max-width: 767px) {
    .stay-inline .x-column {
        width: 48%;
        margin-right: 4%;
        float: left;
    }
    .stay-inline .x-column:nth-child(2n) {
        margin-right: 0
    }
    .stay-inline > .x-container {
        width: auto;
    }
}

Here are some related links for further reading, this could help you in finding and implementing some CSS fixes:

Hope this helps!

1 Like

hello nabeel,

thanks a lot. it works out for me. you saved my ass! :wink:

cheers!
oli

ps it would be a very great feature for future updates, as most projects have a mobile viewrate of 50%+ vs desktop…

Hey Oliver,

Yes, we will have a responsive column feature in the next release. You can read more about that in our Changelog at https://theme.co/changelog

Thanks.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.