看不到宽页面

时间:2013-08-16 01:50:09

标签: jquery-mobile

所以我是jquerymobile世界的新手。 我试图在我的用户页面周围放置一个jquerywrapper。 我有大部分工作,但我卡在页面宽,不适合移动设备的宽度,它似乎是一个固定的宽,不能滚动

所以我正在寻找关于正确方法的建议。 宽数据/页面无法更改。 谢谢你的帮助

一些关键要素::

<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="stylesheet" href="/inc/jquery.mobile-1.3.1/jquery.mobile-1.3.1.min.css">

<body class="ui-mobile-viewport ui-overlay-c" >
   <div class="pagewithmenu" data-role="page" id="user-home" data-theme="d" data-url="user-home">
       <div  data-theme="b" data-role="header" style="text-align: center;" data-title="<?=$siteuser->fname?> <?=$siteuser->lname?>">
            <?=$siteuser->fname?> <?=$siteuser->lname?>
            <a  href="/" data-role="button" class="u-home" data-icon="home" data-iconpos="notext" data-theme="b" data-iconshadow="false" data-inline="true">Home</a>
       </div>

       <div id="mycontent" data-role="content" >
         <div class="article" style="ov">
             <!--
             ***** WIDE PAGE DATA HERE ***** 
             this is user generated code and can be anything
             for example this is one i am seeing the problem 
             -->
             <table width="663" cellspacing="0" cellpadding="2" bordercolor="purple" border="5" background="http://www.unitnet.com/sboggs/picts//purple_star.jpg" height="497" class="c3">
                  <tr>
                    <td>
                     some picts
                    </td>
                  </tr>
              </table>
         </div>    
         </div>    
       </div>        

0 个答案:

没有答案