Я пытаюсь открыть новые места для модулей в моем шаблоне, но он не работает должным образом ... один из них идет поверх всего, включая логотип ...
Мой 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;
}
что я делаю не так и как я могу это исправить ??Спасибо ...