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
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
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
actually the first suggestion worked. body {
overflow: hidden;
}