我正在尝试在主页中放置一些html,但是每当我保存页面时,标记都消失了,它不会保存。
这是我要保存在页面中的html。
<section class="bottom_sec">
<div class="shop_bottom">
</div>
</section>
<section class="footer-container">
<figure class="footer-logo"><a href="#"><img src="{{skin url}}images/footer_logo.png" alt="footer_logo" /></a></figure>
</section>
</section>
现在,当我单击保存按钮时,<section>
和<figure>
标记消失,我的html看起来像这样
<div class="shop_bottom">
</div>
<p><a href="#"><img src="{{skin url}}images/footer_logo.png" alt="footer_logo" /></a></p>
如何将这些标签保存在cms页面中。magento是否可以保存这些标签。谢谢...