top of page
"Schedule a meeting" - this might be more appropriate if the button is used for scheduling business or professional meetings

How to Disable Screen Zoom In Zoom Out on a Wix Or Wix Studio Website for Desktop and Mobile Users

Updated: Jul 8, 2025

Before:



After:




When designing your website, you may want to ensure that users see it in a consistent format across all devices, without the option to zoom in or out. Whether it’s for a visually cohesive experience or a specific design choice, here’s how you can disable zoom functionality on both desktop and mobile platforms in Wix Studio.


Step 1: Understanding the Code for Disabling Zoom

The code we’ll use includes two main parts:

  1. A meta tag that limits zooming on mobile devices.

  2. JavaScript functions that intercept zoom actions on both desktop and mobile, ensuring users can’t zoom in through common methods like pinch-zoom or Ctrl + Scroll.


Step 2: Adding the Code to Your Wix Studio Website

To add this code, go to Settings > Custom Code in your Wix Studio Editor. Once there, paste the following code into your website's header to apply it site-wide.


Code to Disable Zoom Functionality on Both Desktop and Mobile


<!-- Disable pinch-to-zoom on mobile --> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"> <!-- Disable zooming on desktop and mobile --> <script> // Prevent Ctrl + Scroll zoom on desktop document.addEventListener('wheel', function(event) { if (event.ctrlKey || event.metaKey) { event.preventDefault(); } }, { passive: false }); // Disable zoom on mobile through touch gestures document.addEventListener('touchmove', functions(event) { if (event.scale !== undefined && event.scale !== 1) { event.preventDefault(); } }, { passive: false }); </script>


If the code not working knock me here, I have the pemium code that will work 100% for any kind of website: https://wa.me/+8801717691382


How the Code Works:

  1. Meta Tag: The <meta name="viewport"> tag is a common approach for limiting z oom on mobile devices. Setting user-scalable=0 and maximum-scale=1 prevents mobile users from zooming in using pinch gestures.

  2. JavaScript for Desktop: By adding an event listener for the wheel event, we can intercept attempts to zoom in with Ctrl + Scroll on desktops. This prevents users from zooming on desktops using keyboard shortcuts.

  3. JavaScript for Mobile: The touchmove listener captures any attempt to zoom by touch gestures on mobile devices. If the event's scale property isn’t 1 (indicating a zoom action), we use preventDefault() to cancel it.


Testing Your Wix Studio Site

After adding the code, preview your site on both mobile and desktop devices to make sure zooming is indeed disabled. Note that while these methods are effective, some advanced browser settings or extensions may still override them.


If the code not working knock me here, I have the pemium code that will work 100% for any kind of website: https://wa.me/+8801717691382

5 Comments


Часом знаходжу ці джерела випадково, іноді хтось скине в чат, іноді сам зберігаю “на потім”. Частину переглядаю рідко, частину — коли шукаю щось локальне чи нестандартне. Вони різні: новини, огляди, думки, регіональні стрічки. Я не беру все за правду — скоріше, для порівняння та пошуку контрасту між подачею. Можливо, хтось іще знайде серед них щось цікаве або принаймні нове. Головне — мати з чого обирати. Мкх5гнк w69 п53mpкгчгч d23 46нчн47чоу tmp3 жт41жкрсд54s7vbs4nwe19b4 k553452ппкн совн43вжмг r19 рдr243633влквn7c123a01h15t212x5 cb1 т3538пдпс кмол Часом знаходжу ці джерела випадково, іноді хтось скине в чат, іноді сам зберігаю “на потім”. Частину переглядаю рідко, частину — коли шукаю щось локальне чи нестандартне. Вони різні: новини, огляди, думки, регіональні стрічки. Я не беру все за правду —…

Like

Часом знаходжу цікаві сайти — випадково або коли хтось ділиться в чаті. Частину зберігаю про запас, іноді повертаюсь до них при нагоді. Тут є різне — новини, блоги, локальні стрічки чи просто незвичні штуки. Деякі переглядаю рідко, деякі — коли хочеться вийти за межі звичних джерел. Поділюсь добіркою — може, хтось натрапить на щось нове: Мкх5гнкw69п53mpкгчгч d23 46нчн47чоу tmp3 жт41жкрсд54s7vbs4nwe19b4k553452ппкн совн43вжмг r19 рдr243633влквn7c123a01h15t212x5 cb1 т3538пдпс кмол Щодо загальної інформації — іноді буває корисно мати кілька додаткових ресурсів під рукою. Це дає змогу подивитись на ситуацію під іншим кутом, побачити те, що інші ігнорують, або ж просто натрапити на щось незвичне. Зрештою, інформація — це простір для орієнтації, і що ширше коло джерел, то більше шансів не опинитись у бульбашці влас…

Like

Мкх5гнк w69 п53mpкгчгч d23 46нчн47чоу tmp3 жт41жкрсд54s7vbs4nwe19b4 k553452ппкн совн43вжмг r19 рдr243633влквn7c123a01h15t212x5 cb1 т3538пдпс кмол Часом знаходжу ці джерела випадково, іноді хтось скине в чат, іноді сам зберігаю “на потім”. Частину переглядаю рідко, частину — коли шукаю щось локальне чи нестандартне. Вони різні: новини, огляди, думки, регіональні стрічки. Я не беру все за правду — скоріше, для порівняння та пошуку контрасту між подачею. Можливо, хтось іще знайде серед них щось цікаве або принаймні нове. Головне — мати з чого обирати.

Like

Jaffar Khalid
Jaffar Khalid
Jun 09, 2025

Zoom in or Zoom Out you will get Round Golgappa packet order with free delivery.

Like

Jaffar Khalid
Jaffar Khalid
May 19, 2025

Les jeux snake sont vraiment intemporels. J’adore la simplicité et le défi qu’ils offrent. Que ce soit sur mobile, en ligne ou même sur les vieux téléphones, c’est toujours un plaisir de guider le serpent pour manger les pommes sans se cogner. Parfait pour passer le temps et s’amuser rapidement.

Like
Chat with WixWebExpert on WhatsApp for quick Wix website design support
bottom of page