1

この折りたたみ式セットの上位 2 つのアイテムは、それ自体を中心にしています。それを修正する方法はありますか?http://www.mobileagentapps.com/
HTML はすべて同じなので、Jquery Mobile のどこか深いところに原因があると思います。私の電話では問題ないようです。大画面ではありません。最初の 2 つの項目をコピーしたことに注意してください。リストの 3 番目になると、問題なく表示されます。したがって、Jquery-Mobile の専門家と混同することはありません。HTML に次の行を追加して、すべてを制約して大きな画面の中央に配置しました。

<div style="max-width:600px;margin: 0 auto;">

私の問題は関係ありません-ページアイテムは前後で同じでした。

    <div data-role="collapsible-set">
        <div data-role="collapsible" data-theme="b" data-content-theme="e" >
            <h3>Branded Mobile Apps</h3>
            <img src="phonesbig.png"/>
            <p>With the REcake system you get native mobile apps for iPhone, Android, and iPad. The apps are branded to you and make it super easy for your clients to contact you. Keeping prospects is always a challenge and having YOUR app on their phone really helps that!</p>
        </div>
        <div data-role="collapsible" data-theme="b" data-content-theme="e" >
            <h3>Branded Mobile Apps</h3>
            <img src="phonesbig.png"/>
            <p>With the REcake system you get native mobile apps for iPhone, Android, and iPad. The apps are branded to you and make it super easy for your clients to contact you. Keeping prospects is always a challenge and having YOUR app on their phone really helps that!</p>
        </div>
        <div data-role="collapsible" data-theme="b" data-content-theme="e">
            <h3>Lead Gen-Text, QR, and NFC</h3>
            <img src="daleresponse.png"/>
            <p>Text response is still the preferred method for mobile lead generation. Go ahead and try what the sign says and see what happens! Dale is an agent in Washington state and would love to hear from you. Our system allows these signs to be reusable- you just log in and change the MLS number and the sign works on the new property.  We can also show you how to get text leads from your print ads!  </p>
            <p>Our system also generates reusable QR codes that point to mobile property pages as well. These pages- like the one at <a href="http://rea.bz/kelly-6" target="new">rea.bz/kelly-6</a> give leads information about properties and also show them how to download your app.

        </div>
        <div data-role="collapsible" data-theme="b" data-content-theme="e">
            <h3>Agent Facebook App</h3>
            <img src="facebookapp.png"/>
            <p>Do you log into Facebook nearly every day? If so, then the REcake Facebook makes perfect sense for you. Your friends can stay right on Facebook and search for properties, contact you about the ones they like, save favorites, print flyers, map the properties, and more.</p>
        </div>
        <div data-role="collapsible" data-theme="b" data-content-theme="e">
            <h3>Agent Branded Mobile Web</h3>
            <img src="personal.png"/>
            <p>In addition to our apps we provide a growing number of mobile web features. For instance you get branded mobile property pages for every property in the MLS. You also get a personal agent page that allows people to contact you very easily- for instance- <a href="http://rea.bz/kelly" target="new">rea.bz/kelly</a> </p>
        </div>
        <div data-role="collapsible" data-theme="b" data-content-theme="e">
            <h3>REcake Overview</h3>
            <p>We provide you the tools you need to really connect with your prospects and communicate with your clients. And we pride ourselves in not nickle and diming you. We would love to have you as part of our party. Cake was used by the Romans to seal a bond- so we'd love to work with you to help you sell real estate.</p>
            <ul>
            <li>$14- Facebook App Only.</li>
            <li>$24- Mobile apps and text response system.</li>
            <li>$34- Mobile apps, Facebook App, text response system, and more!</li>
        </ul>
        <a href="signup.html" data-role="button" data-inline="true" data-theme="b">Sign Up Here</a>
            <p>Watch our overview video</p>
            <iframe width="200" height="200" src="http://www.youtube.com/embed/o3i0mc70y-I?controls=0&showinfo=0&showsearch=0&modestbranding=1"></iframe>
        </div>
</div>
4

1 に答える 1

0

の前に配置されている以下の div のためcollapsible-set。削除すると、すべてがデスクトップ上で正常に表示されます。

<div class="content-secondary"></div> 

divを削除する前に


後

于 2013-04-21T12:11:26.793 に答える