scrollbar won't go away in jquery mobile -


i'm using jquery mobile , no matter how content on page there scrollbar appears right. turning on overflow-hidden doesn't make go away. page has nothing header, link, , panel. how can removed?

the html follows:

<body> <!-- document framework --> <div data-role="page">     <div data-role="panel" id="toolmenu" data-theme="a">         <form>                 <fieldset data-role="controlgroup">                 <legend>select tool:</legend>                 <input name="radio-choice-v-2" id="radio-choice-v-2a" value="on" checked="checked" type="radio">                 <label for="radio-choice-v-2a">one</label>                 <input name="radio-choice-v-2" id="radio-choice-v-2b" value="off" type="radio">                 <label for="radio-choice-v-2b">two</label>                 <input name="radio-choice-v-2" id="radio-choice-v-2c" value="other" type="radio">                 <label for="radio-choice-v-2c">three</label>             </fieldset>         </form>     </div>     <div data-role="header">         <h1>title</h1>     </div>     <div data-role="content">         stuff<br />         <a href="#toolmenu">open panel link</a>     </div>     <div data-role="footer" data-position="fixed">         footer     </div> </div> </body> 

thanks.

i solved problem. issue had css files in wrong order. when using custom theme jquery mobile, have have css files in particular order--namely, themeroller-created custom theme has come before jquery mobile css, , have use jquery.mobile.structure-1.4.2.min.css (or equivalent whatever version using anyway), not full css file.


Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -