How to Enable Mobile Mode

Homepage Community Forums Epik Theme Support How to Enable Mobile Mode

Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #12603
    Sami
    Customer

      I do not see an answer to my problem here so forgive me if I missed it.

      When I view my site on iPhone5, the layout is skewed.

      What do I require doing to enable mobile mode? I don’t see any documentation on this.

      Thank you so much!

      http://samanthagilbert.com

      #12615
      Wes
      Moderator

        This is happening because of the custom code you added to your css. When you add a fixed width it will always be that size unless you add the code in your responsive section of the css to override the width when a smaller/mobile browser is used.

        It looks like you added a width to body.custom-background in your custom css –

        body.custom-background {
            background-color: #333;
            width: 1140px;
            margin: 0 auto;
        }

        There is also a width added to the .site-inner in your custom css.

        Last is the .content where you added 779px –

        .content {
            width: 779px !important;
            padding: 0 25px;
        }

        Once you remove or adjust these back to the original size your responsive code will work again.

        #12624
        Sami
        Customer

          Thank you Wes!!! 馃檪

          #12631
          Wes
          Moderator

            You’re Welcome!

          Viewing 4 posts - 1 through 4 (of 4 total)
          • The topic ‘How to Enable Mobile Mode’ is closed to new replies.