Home > Software design >  mobile view always view width as 980px. Can anyone help me detect what wrong?
mobile view always view width as 980px. Can anyone help me detect what wrong?

Time:12-08

I want to make a embed version for my site at url https://staging.immo-suedtirol.com/jobs/?iview=embed

It work well on desktop view. but on mobile view it seem not work. I use developer tool to check and see: site width always in 980px This is what I see on developer tool. Content width always fixed to 980px for small screen view.

This really strange. This is first time I get it.

CodePudding user response:

it looks perfect with chrome responsive developer tool. https://prnt.sc/22aj4bs please share the exact problem so, can help you in that.

CodePudding user response:

You must add meta tag in the html header for screen width

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

https://developer.mozilla.org/en-US/docs/Web/HTML/Viewport_meta_tag

  • Related