Reputation: 79
I am using bootstrap 3 css/js files for my html pages and facing following 2 problems:
Html page design (font style, height/width of pictures) is fine on iOS 6 devices but its not working on iOS 7 devices. On iOS7, I even can not read text and all contents are very small. How can I fix this iOS 7 problem using Bootstrap 3 css/js files?
I am trying to open same html page on Windows Mobile (Lumia 925) and all contents are not fit to screen. It's not 100% perfect.
Any suggestion or solution?
Upvotes: 1
Views: 1022
Reputation: 3642
Try adding this metatag
<meta name="viewport" content="width=device-width,maximum-scale=1.0" />
Upvotes: 4