0

我知道这方面有很多线程,但这些线程都没有真正帮助我。我有一个基于 Typo3 的电子商店。我有页脚,我想和我的浏览器窗口一样宽。在我的主页上,没有问题。但是当我点击“显示所有产品”时,会出现产品列表,但我的页脚只有 988px 宽。在我的 index.html 模板文件中,我为页脚分隔了 div(它不在任何其他 div 或块中): FOOTER

 <div id="footer">
    <div class="main-width">

        <div class="footer-menu" id="footerMenu">
           <a href="http://osc4.template-help.com/zencart_32899/">Home</a>&nbsp;&nbsp;|&nbsp;&nbsp;
           <a href="http://osc4.template-help.com/zencart_32899/index.php?main_page=products_new">New Products</a>
&nbsp;&nbsp;|&nbsp;&nbsp;
           <a href="http://osc4.template-help.com/zencart_32899/index.php?main_page=specials">Specials</a>
&nbsp;&nbsp;|&nbsp;&nbsp;
           <a href="http://osc4.template-help.com/zencart_32899/index.php?main_page=products_all">Products All</a>
&nbsp;&nbsp;|&nbsp;&nbsp;
           <a href="http://osc4.template-help.com/zencart_32899/index.php?main_page=reviews">Reviews</a>
&nbsp;&nbsp;|&nbsp;&nbsp;
           <a href="http://osc4.template-help.com/zencart_32899/index.php?main_page=contact_us">Contact Us</a>
&nbsp;&nbsp;|&nbsp;&nbsp;
           <a href="http://osc4.template-help.com/zencart_32899/index.php?main_page=gv_faq">FAQ</a> 
 </div>
 <div class="copyright">
           Copyright &copy; 2013 
          </div>
                </div>

           </div>

当我在 OPERA 中加载我的页面并单击(在歌剧中)“检查元素”时,我的页脚(在所有产品页面上)似乎在某种 div(contentWrapper)中:

 <body id="indexBody">
     - <div class="main-width">
         + <div id="header">
           <div class="banners"/>
         + <div class="crsl">
         - <div id="contentWrapper">
            + <div id="sidebar">
            + <div id="content_container">
            + <div id="footer">

 </div>
 </div>
 </body>
 </html>

+ 和 - 显示哪些 div 已折叠,哪些未折叠。希望它清楚。:) 在我的主页上,当我单击检查元素时,我的页脚不在那个“contentWrapper”div 内。哪里可能有问题?请帮忙

4

1 回答 1

0

永远不要相信那些元素检查器,因为它们总是在花哨的可折叠树视图中显示解释的源代码。查看纯源代码并计算 div 标签。我敢打赌,第二个模板错过了一个结束的模板;-)

于 2013-10-16T21:10:30.930 回答