我正在 magento 中创建一个 CMS 页面,作为即将推出的产品的预告片。我正在使用带有右栏的两列,并在后端使用布局更新 XML 来调用我为右侧制作的一些自定义块。
好吧,现在我只加载占位符,然后在事后编辑 phtml。
如果我在右边使用两个块,它看起来很好..但是如果我添加更多,那么整个页脚会损坏并移动到右列。
我试图在右侧获得 3 个自定义块。
这是我的布局更新 XML
<reference name="right">
<block type="newsletter/subscribe" name="left.newsletter" template="newsletter/rightsubscribe.phtml"/>
<block type="core/template" name="name1" template="page/custom/custom1.phtml"/>
<block type="core/template" name="name2" template="page/custom/custom2.phtml"/>
</reference>
这是我正在使用的海关区块的 HTML。
<div id="shop-with-confidence" class="white-box">
<h3>Custom1</h3>
<div class="white-box-inner">
Testing1
</div>
<div id="shop-with-confidence" class="white-box">
<h3>Custom2</h3>
<div class="white-box-inner">
Testing2
</div>
有谁知道为什么这会破坏我正在编辑的页面?