Ok i solved it in Android using the following code to fit the page on the small mobile phone. However it makes it pretty small. It would be nice if you guys can format the page so that it fits nicely on smaller screens
// Fit the page on the screen and make it scrollable
webView.getSettings().setLoadWithOverviewMode(true);
webView.getSettings().setUseWideViewPort(true);
webView.getSettings().setBuiltInZoomControls(true);