• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

delete post

Typically sites detect the device and render it differently for a mobile device. Google and CNN like most others redirect to a mobile version. A lot of times this can be handled with different css layouts depending on device.
 
I really like responsive design and tools like skeleton.js and bootstrap make it really easy to design a site that works well.
 
CNN doesn't have the issue because they redirect you to a mobile site http://m.cnn.com
Rewriting a mobile site is usually the best way since you can also limit bandwidth demands for those on 1X or 3G.

If your content is limited in width (less than the mobile screen width), this meta tag

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

will zoom into the page and give it the mobile feel.
 
Back
Top