arusli (@arusli)

Forum Replies Created

Viewing 1 replies (of 1 total)
  • In reply to: Responsive Issue

    arusli
    Participant

    @arusli

    i believe your theme css bypass responsive setting. find your theme css that especially control responsive css. could be in responsive.css. then find setting for:

    @media screen and (max-width: 480px) {
      .my {
         display:inline-block
      }
    }

    and replace to:

    @media screen and (max-width: 480px) {
      .my {
         display: block;
      }
    }
Viewing 1 replies (of 1 total)