Hi,
I have created new module positions for JA_T3_Blank – Default template and initially they work fine, but after a while I cannot change the position of the new modules in the template.css file. The files I have are template.css, custom.css and templateDetails.xml.
so I define module position in templateDetails.xml :
<positions>
<position>musictext</position>
</positions>
Then in custom.php I do :
<?php if($this->countModules(‘musictext’)) : ?> <div class="musictext"> <jdoc:include type="modules" name="musictext" ></jdoc:include> <?php endif; ?>
The specify the new module position in template.css :
.musictext{ padding: 0; border: 0px solid #ccc; position: absolute; right: 8300px; top: 355px; width: 40px; z-index: 900; }
Any help would be greatly appreciated.