我目前有以下问题: 单击产品后,页脚宽度会变小。这里的实例: (小页脚:) http://osolemio.nl/serdar/index.php?route=product/product&path=59&product_id=97
(它应该如何:) http://osolemio.nl/serdar/index.php
我已经通过编辑css,宽度100%等尝试了几种方法,但没有任何效果。 有人看到了什么问题?
提前致谢。
答案 0 :(得分:1)
这是因为产品页面中的页脚在#content内呈现,而在主索引页面中它是在外面。
您忘记关闭任何div或来自CMS的代码搞砸了您的标记。
答案 1 :(得分:1)
在产品页面中有一个div未关闭(没有</div>
)。
找出它并添加</div>
。它在<div class="product-info">
元素
答案 2 :(得分:1)
<div id="content">
未正确关闭。它必须在<div id="footer">
之前关闭。
答案 3 :(得分:0)
从#footer
元素中取出#content
元素,并在 #content
元素之后立即将其放置。