Reputation: 351
I have used javascript code which you can see below: I don't know why only opera mini 6 (at all types of mobiles) showing zoomed view? specially my site. site is www.propertiesng.com/mobile
Please help.
// Check if the UA is a mobile one (iphone, ipod, android, blackberry) isUAMobile =!!(agent.match(/(iPhone|iPod|blackberry|android 0.5|htc|lg|midp|mmp|mobile|nokia|opera mini|palm|pocket|psp|sgh|smartphone|symbian|treo mini|Playstation Portable|SonyEricsson|Samsung|MobileExplorer|PalmSource|Benq|Windows Phone|Windows Mobile|IEMobile|Windows CE|Nintendo Wii|maemo|presto|mini)/i));
Upvotes: 0
Views: 371
Reputation: 5672
try changing your doctype to
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
Upvotes: 0