【问题标题】:Shopify Website is giving white space on right side in Ipad OnlyShopify 网站仅在 Ipad 的右侧提供空白区域
【发布时间】:2018-04-18 21:59:00
【问题描述】:

我在这个网站fearofmissingoutfomo.com 上遇到了一个问题,在 iPad 中查看时右侧有一个白条。 我的代码是

html,body { 
margin: 0; 
padding: 0;
border: 0;
@include smooth_font();}
{% if settings.use_bg_image %}
body {
background: {{settings.shop_bg_color}} url({{ 'bg.png' | asset_url }}) 0 0 no-repeat;
}
body.index-template {
 background: {{settings.shop_bg_color}} url({{ 'bg.png' | asset_url }}) 0 0 no-repeat;
padding-top: 40px;
padding-bottom: 40px;
}

我们将不胜感激。我也看到了一些相关的线程,但无法将其与我的问题联系起来。谢谢。

【问题讨论】:

    标签: ios css ipad shopify responsive


    【解决方案1】:

    由于此部分,问题正在发生:

    目前你的部分有这样的 HTML

    <div id="shopify-section-1509186783462" class="shopify-section  index-section products-grid">
       <section data-section-id="1509186783462" data-section-type="products">
          <div class="section-header text-center">
             <h2>View our featured christmas items</h2>
          </div>
          <div class="grid grid--uniform grid--view-items">
             ......
          </div>
          <div class="text-center view-more btn">
             <a href="/collections/christmas">
             See more
             </a>
          </div>
       </section>
    </div>
    

    你应该修复它并像这样添加containerrow

    <div id="shopify-section-1509186783462" class="shopify-section  index-section products-grid">
       <section data-section-id="1509186783462" data-section-type="products">
          <div class="container">
             <div class="row">
                <div class="section-header text-center">
                   <h2>View our featured christmas items</h2>
                </div>
                <div class="grid grid--uniform grid--view-items">
                   ......
                </div>
                <div class="text-center view-more btn">
                   <a href="/collections/christmas">
                   See more
                   </a>
                </div>
             </div>
          </div>
       </section>
    </div>  
    

    【讨论】:

    • 非常感谢 Victor 你救了我的命 谢谢 :-) 我标记的答案已更正 :-)