Hello, id like to ask, is there an easy way to disable responsive styles on mobile devices? Something like unlink media css files in index or so, i dont want to rewrite php in many files. Its not really worth time, but if it can be done fast, id like to know. Thanks
Get an access to all 94 items designed and developed by AS Designing team plus all the future items
which will be released over the course of your club subscription.
Price starting from $59.00
In index.php change this code :
//$doc->addStyleSheet('templates/'.$this->template.'/css/media.980.css');
//$doc->addStyleSheet('templates/'.$this->template.'/css/media.768.css');
//$doc->addStyleSheet('templates/'.$this->template.'/css/media.480.css');
Add following:
echo '<meta name="HandheldFriendly" content="true">';
echo '<meta name="apple-mobile-web-app-capable" content="yes">';
echo '<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">';
Regards, AS Team.