Greg Pettit
Greg Pettit

Reputation: 10830

'zoomed in' options for mobile browser

I have a legacy web application that was written long before there were even mobile browsers, never mind responsive design. As such, everything is static.

I can't modify all aspects of the site's pages. For example, I cannot change that the main container is set to 900px with auto margins. But through other server-side output classes, I can modify bits here and there. For example, one class builds a <div> element with other nested markup, and I can add inline styles and attributes to any of this markup. I can also modify the header include to a certain degree. So what I'm wondering about options:

I apologize for lack of sample code... I've certainly tried a few different things with CSS properties, but no matter what I'm always viewing the zoomed out full-page version.

Upvotes: 0

Views: 417

Answers (1)

GGD4V
GGD4V

Reputation: 265

To make sure your fonts are readable you could use a font-size per percentages instead of pixels if thats what you are using.

View this article about adaptive design for mobile if this helps :

http://webdesignerwall.com/tutorials/responsive-design-with-css3-media-queries

Upvotes: 1

Related Questions