• Resolved wordpressguru

    (@akahrau)


    All products are always displayed one below the other on the mobile phone. Is there a way that it shows two side by side on the phone?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Justin McChesney-Wachs

    (@justinmw)

    Hello. Thanks for reaching out and for the feature request. We like the idea and have added it to the enhancement list for a future update.

    Plugin Author leonmagee

    (@leonmagee)

    Hi @akahrau, sorry for the late reply. You can use the following CSS to achieve this.

    @media(max-width: 767px) {
    .shop-page-wp-grid {
        display: flex;
    	flex-wrap: wrap;
      }
      .shop-page-wp-item {
        flex: 0 1 50%;
      }
    }

    Please let me know if this works for you.

    @leonmagee although I am not the OP, this does work for me and I thank you for it.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Two images side by side in the mobile view’ is closed to new replies.