[code]include_once($_SERVER["DOCUMENT_ROOT"]."/system/mobile_detect.php"
$detect = new Mobile_Detect;
if($detect->isMobile()){
echo'<link rel="stylesheet" href="/style/css/wap.css" type="text/css" />';
}
elseif($detect->isTablet()){
echo'<link rel="stylesheet" href="/style/css/style2.css" type="text/css" />';
}
else
{
echo'<link rel="stylesheet" href="/style/css/web.css" type="text/css" />';
}
if($detect->isAndroidOS()){
echo'<link rel="stylesheet" href="/style/css/style.css" type="text/css" />';
}
if($detect->isiOS()){
echo'<link rel="stylesheet" href="/style/css/style2.css" type="text/css" />'; }[/code]
Создай один css для телефонов, второй для компов.
Надо определение сделать.