We moved to new unified forum!

Please post all new support queries in our New Forum.

T3 Community Discussion & Support

Let's build the best free Joomla template framework, together!
  1. Claudio Ballarin
  2. General Discussion
  3. Wednesday, 17 July 2013
  4.  Subscribe via email
I disabled the function responsive, but the site remains responsive. When I open it with a tablet or smartphone I can't see the site in his max width but is visible only a portion of the width (how big is this portion depend from media device). I want that the website is always open at his max width (980px), like bbc.com for example, is it possible? thank you
Comment
There are no comments made yet.
Accepted Answer Pending Moderation
0
Votes
Undo
Hi Claudio Ballarin,

Please try to open \templates\t3_blank\tpls\blocks\head.php
And replace
<meta name="viewport" content="width=device-width, initial-scale=1.0<?php echo $this->getParam('responsive', 1) ? ', maximum-scale=1.0, user-scalable=no' : '' ?>"/>


with

<?php if($this->getParam('responsive', 1)): ?>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<?php endif ?>


Regards
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 1
Accepted Answer Pending Moderation
0
Votes
Undo
thank you, is exactly what I need!

Only one little variation, if I write
<?php if($this->getParam('responsive', 1)): ?>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<?php endif ?>


don't work, but if I include the next to rows
<?php if($this->getParam('responsive', 1)): ?>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="HandheldFriendly" content="true" />
<meta name="apple-mobile-web-app-capable" content="YES" />
<?php endif ?>


work!
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 2
  • Page :
  • 1


There are no replies made for this post yet.
However, you are not allowed to reply to this post.