how to show website with full width on mobile devices
You could try to add this in your page head:
<meta name="viewport" content="width=device-width, initial-scale=1">
This will attempt to make the browser display the page at full-width.
Put the meta tag in the head
<head>
<title>My Website</title>
<meta name="viewport" content="user-scalable = no">
</head>