Eey,
thanx for the replies... esspecially the Andriod issue... it should be fixed now!
The issue was; 1 - a redirect on browser-platform e.g. iPhone, Android etc...
to detect mobile-devices and 2nd; a redirect that detects the system-platform
e.g. Mac, Linux and Windows for the proper CSS-files.
And as Android is both Android-browser and Linux-system... it kept redirecting
between the regular and mobile website...
Used a code like this, should be better by now:
if(strstr($_SERVER['HTTP_USER_AGENT'],'iPhone') || strstr($_SERVER['HTTP_USER_AGENT'],'iPad') || strstr($_SERVER['HTTP_USER_AGENT'],'iPod')
{
$browser = 'mobileDevice';
}
Check out the VA Template Framework for an implementation of this script!
http://demosite.vanallerlei.com/pages/en-us/downloads.phpCheerz,
Tez