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

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.


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