Quote:
Originally Posted by dhobbs1978
Unfortunately I am short on spare time so would rather not have to create optimised pages.
|
Short of actually reducing the text-size across the board, you'll have to either deal with it or you can set mobile-specific CSS. For current-gen devices (not sure what will happen with iPhone 4) you can use media queries, like this:
Code:
<link media="only screen and (max-device-width: 480px)" href="" type= "text/css" rel="stylesheet" />
Through this you can do any fixes or, even better, design your site to fit into a mobile environment.