Hi
I need to set four new module positions in bottom1 instead of a whole module position. This four module positions have to be in horizontal align, one beside other, for to set banners.
For to do it I set four module positions in templatedetails.xml with names bottom1a, bottom1b, bottom1c, bottom1d (between <postions></positions>). After I set them in gk.const.php with "gk_style"...and after I tried to set one of them in default.php with this code:
<?php if($this->modules(‘bottom1a’)) : ?>
<div>
<jdoc:include type=”modules” name=”bottom1a” style=”<?php echo $this->module_styles['bottom1a']; ?>” />
</div>
<?php endif; ?>
The php for bottom1 position in default.php is:
<?php if($this->API->modules('bottom1')) : ?>
<section id="gkBottom1" class="gkPage gkCols6">
<div>
<jdoc:include type="modules" name="bottom1" style="<?php echo $this->module_styles['bottom1']; ?>" modnum="<?php echo $this->API->modules('bottom1'); ?>" /
</div>
I tried to set the the code for bottom1a after this but with no results. The position is showing in joomla administrator but no shows some module. I want to know if the php code is in right position in default.php or i have to fix some CSS for to view it (and where set this css).