Website zoomed out on Android default browser

609 views Asked by At

I'm kind of lost here. Due to a deadline I didn't have the chance to properly test the website on every device and now people are telling me it's not showing up properly on the default Android browser. The user shouldn't be able to zoom out of the bounds of the <body>.

Trying to change the viewport tag doesn't seem to make much of a difference.

I'm using Bootstrap 3 for responsive features. The website is shown as follows:

Screenshot (used BrowserStack)

This is the website in question.

Any help would be greatly appreciated.

1

There are 1 answers

2
Ybrin On

You can use:

body{
  width: auto;
  display: block;
}

inside your css file, which will make the width of the body tag 100% of the display size.