Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi mayurjango. The background is being changed in the media query in responsive.css. Two options:

    1. Add this to your other media queries in the theme custom.css:

    @media only screen and (max-width: 960px) {
     .col-2cl .main-inner {
      background: #fff;
      }
    }

    2. In your child theme style.css, change this:

    .col-2cl .main-inner {
      background: #fff;
      }

    to this:

    .col-2cl .main-inner {
      background: #fff !important;
      }
    Thread Starter mayurjango

    (@mayurjango)

    Hi bdbrown, that worked. You always come to rescue. ??

    Thanks

    Glad that worked. If this request is complete please mark the topic as resolved. Thanks.

    Thread Starter mayurjango

    (@mayurjango)

    Done

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Background turns grey when viewing site in landscape mode on mobile’ is closed to new replies.