Hi, i have downloaded the joomla 1.5 template toolbar and it seems to work great for a newbie like me.
Toolbar
this is the code (generate for "right" and "right simple" position)
Code:
<?php if($this->countModules('right')) : ?>
<jdoc:include type="modules" name="right" style="" />
<?php endif; ?>
Code:
<jdoc:include type="modules" name="right" style="" />
what are the differences between the "right" and "right simple" ?
would be this code correct to create a right or left module position?
Code:
<body>
<div
<?php if($this->countModules('right')) : ?>
<jdoc:include type="modules" name="right" style="" />
<?php endif; ?>
<jdoc:include type="modules" name="left" style="" />
</div>
</body>