我正在尝试在我的模板中打开新的模块位置,但它无法正常工作..其中一个位于包括徽标在内的所有位置的顶部......
我的index.php看起来像这样
<?php if ($this->countModules('editheader')) : ?>
<div id="cart">
<jdoc:include type="modules" name="editheader" style="xhtml" />
</div>
<?php endif; ?>
<div class="headerboxcart"><jdoc:include type="modules" name="headerboxcart" /></div>
<?php if ($this->countModules('customcart')) : ?>
<div id="cart">
<jdoc:include type="modules" name="customcart" style="xhtml" />
</div>
<?php endif; ?>
和css
div.headerboxedit-content {
position: absolute;
z-index:-9999;
top: 100px;
left: 100px;
width: 700px;
height: 200px;
}
div.headerboxcart-content {
margin: 0 auto;
position: absolute;
z-index:1;
top: 20px;
left: 425px; /
width: 400px;
height: 180px;
}
我做错了什么,如何解决? 感谢...