Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author agentevolution

    (@agentevolution)

    Your theme is including this CSS style with an explicit width causing this to happen:

    @media (min-width: 0px) {
      .container {
        width: 750px;
      }
    }

    You’ll need to override it with custom CSS:

    @media (min-width: 0px) {
      .container {
        max-width: 100%;
      }
    }

    Thread Starter jenwysman

    (@jenwysman)

    Thank you so much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Listings not responsive’ is closed to new replies.