The code which follows is the code put in place to disable all scrolling within the webworks app. meta name="viewport" id="viewport" content="initial-scale=1.0,height=600,width=1024,user-scalable=no"/> (< tag removed from beginning of meta to ensure its visibility) The above was placed under head in the html file. The following attributes were set in the CSS for body: overflow: hidden; position: fixed; These work - nothing is scrollable, until the keyboard is opened. When the keyboard is opened, the background image and other parts become scrollable.
The code which follows is the code put in place to disable all scrolling within the webworks app.
meta name="viewport" id="viewport" content="initial-scale=1.0,height=600,width=1024,user-scalable=no"/>
(< tag removed from beginning of meta to ensure its visibility)
The above was placed under head in the html file.
The following attributes were set in the CSS for body:
overflow: hidden;
position: fixed;
These work - nothing is scrollable, until the keyboard is opened.
When the keyboard is opened, the background image and other parts become scrollable.