Viewing 8 replies - 1 through 8 (of 8 total)
  • Hello,

    Just a suggestion and not sure if this will work, but do you have the below meta tag in the <head> of your documents:

    <meta name=”viewport” content=”width=device-width, initial-scale=1″>

    May or not work, just a initial suggestion. Let me know if this helps.

    Thanks,

    Andrew

    Thread Starter bethplummer

    (@bethplummer)

    Hi, yes that is there.

    Okay, it could also be the default margin and padding. Currently your link goes just to a Website Coming Soon page, do you have the site online for viewing as of yet? If you haven’t already, you could try adding CSS to “reset” the default in your style.css file. Something like below:

    * {
    margin: 0;
    padding: 0;
    }

    Or

    body {
    margin: 0px;
    padding: 0px;
    }

    Let me know if this helps.

    Andrew

    Thread Starter bethplummer

    (@bethplummer)

    I think my site is live now. I forgot to click something.

    Okay, another option is to apply overflow: hidden to the body tag, like below:

    body {
    overflow: hidden;
    }

    Andrew

    Correction to the above, it would be overflow-x: hidden.

    Andrew

    Thread Starter bethplummer

    (@bethplummer)

    That worked. Thank you!

    Thread Starter bethplummer

    (@bethplummer)

    actually the first suggestion worked. body {
    overflow: hidden;
    }

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘issue with right side on mobile device’ is closed to new replies.