Website Fit On Screen For Tablets, Viewport Not Working?
I've built a webshop with opencart, with a theme that was originally responsive. However, the owner wanted exactly the same website on all platforms, so I simply removed a seperate
Solution 1:
Try this:
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">
It is working for me.
Solution 2:
Use the below meta code hope it will solve your issue
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Post a Comment for "Website Fit On Screen For Tablets, Viewport Not Working?"