• Resolved PedroDK

    (@pedrodk)


    Hi,
    Is there a way to maintain a two columns layout even for displaying on mobiles?

    I know it sounds very small, but I have a client that wants just that.

    Thanks!

    cheers P.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Tom

    (@edge22)

    Hi there,

    Try this CSS:

    @media (max-width: 767px) {
        .wp-show-posts-columns .wp-show-posts-single {
            display: block;
            width: 50%;
        }
    
        .wp-show-posts-columns {
            margin-left: -2em !important;
        }
    
        .wp-show-posts-inner {
            margin-left: 2em !important;
        }
    }
    Thread Starter PedroDK

    (@pedrodk)

    Hi Tom,

    Great – it works!

    Thank you very much for your help.

    cheers

    P.

    Plugin Author Tom

    (@edge22)

    You’re welcome ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘two columns on mobile’ is closed to new replies.