Honestly, on your page in the code:
Code:
<style type='text/css' media='all'>
@import 'css/bimbo.css';
</style>
I'd add in"
Code:
@media handheld {
body, #mainviewframe { width: 640px; }
}
So it would then be
Code:
<style type='text/css' media='all'>
@import 'css/bimbo.css';
@media handheld {
body, #mainviewframe { width: 640px; }
}
</style>