http://broker-sberbank.ru How to make it so that a mobile site opens into a full turn, and not 1 \ 4. I understand that something related to adaptability. But everything seems to be okay. All the same.

  • Something adaptability is not visible at all. Here is a useful tool - Andrew Hobbit
  • Your site is unavailable. - malginovdesign

2 answers 2

As I understood from the question, we are talking about how to scale the site to the width of the device window. In this case, add a line to the <head></head> block

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

If you want the site to be displayed across the entire width of the device without scaling, use this option.

 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> 
  • Hm! I read about it, tried to do so. But for some reason it does not work in WordPress. I tried to add to header.php but a little confusing. Maybe you know exactly where to write this in WP templates? - Sergey
  • Edit the page code so that the <html> and <body> tags do not repeat. If possible, merge all the <head> segments into one. Then the viewport should earn. - Max

You have a <html> and all nested in it, including the head and body on the page THREE TIMES in different places. Eliminate this error to begin with, it is quite possible that this will be enough for the <meta name="viewport" content="width=device-width, initial-scale=1.0"> construction to work