Prevent show simplified view prompt or work with simplified view on Chrome Prevent show simplified view prompt or work with simplified view on Chrome google-chrome google-chrome

Prevent show simplified view prompt or work with simplified view on Chrome


Replace P tags with div in your page. this mode is also known as Reader mode. Probably this answer might help you.


The answer I found for this was to change the font size based on the media width, and once the font size was big enough to be readable on the mobile device I was using, it stopped suggesting the simplified view. The exact code used was:

@media (max-width: 540px) {    body {        font-size:18px !important;    }}

Simple enough.


Also check your viewport settings for mobile devices. I received this popup when I changed the initial scale of the viewport to 0.6.

Basically Google recognised that the font size is too small. Looks good to me but probably not for visitors without perfect eyesight.

<meta name="viewport" content="width=device-width, initial-scale=0.6, maximum-scale=2">

In this case, changing initial-scale=1 will fix this