Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

257
Views
I want to load the page in mobile as in desktop, but it has too much zoom

So i got a client that wants the site to look on mobile exactly like on desktop (small text and all). the issue im encountering is that the site zooms on mobile so i figured im doing something wrong.

i used this code:

 <meta name="viewport" content="width=device-width, height=device-height, initial-scale=0.5, minimum-scale=0.1, maximum-scale=1.0">

with this it loads it zoomed, if i change the initial scale to 0.1 i get white bars around the content and the text gets enlarged.

any idea how to achieve it properly? JS or something?

thank you.

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You have to use media query to make your site mobile-responsive and you only need to add this code in your <meta> tags.

<meta name="viewport" content="with=device-width, initial-scale=1.0">

You can use media query like this. In here 500px is based on mobile device width, It means all css properties in media query will run if your device width is below 500px. Otherwise it will load default css properties which you wrote earlier in the document.

@media all and (max-width: 500px) {
  /*Your
  Changing
  CSS
  Properties*/
}

You can learn more about media query in this article.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!