Page Zoom on Mobile browser

Posted in: Newspaper
Post count: 14

Hi!

Sorry for my English, anyway is there a way to disable zoom on mobile browser?

Thanks!

Post count: 23312

Hello FrancescoITB,

If you want to disable the zoom effect for your mobile mode, please try the code below to do that. place the code in Theme panel->Custom CSS area.

The code is ->

@media (max-width:767px){
.td-hover-1 .td-big-grid-post:hover .td-module-thumb .entry-thumb {
transform: none !important;
-webkit-transform: none !important;
-moz-transform: none !important;
}
}

Thank you for the message!

Post count: 14

Thank you for the reply, but I’m sorry. This code doesn’t works!

Post count: 23312

Hello FrancescoITB,

The zoom effect has been designed to be used only for the desktop because only in this case you have the possibility to use HOVER effect. How you can check the HOVER effect on your mobile phone??? It is not possible this thing because you not have a mouse to make a hover over the image, right? As an example, you can check this code only with the inspector from your side but has no sense, though.
-> http://screencast.com/t/rF0LyIJ6fsbB

Thank you for your understanding!

Post count: 14

Solved whit this:

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />

Do you think this code is okay? Or maybe can causes any mistakes?

Thanks!

Post count: 14

Oh, you didn’t understand my problem!

My problem is about “pinch in” in all mobile pages. But with the HTML code of my last reply, I solved the problem! Do you think the code is okay?

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />

Post count: 23312

Hello FrancescoITB,

If your code does not affect the rest of your site means that is it okay and you can use it without problems.

Thank you for your message!

Viewing 7 posts - 1 through 7 (of 7 total)
The forum ‘Newspaper’ is closed to new topics and replies.