Wow this was easy once I dug around… Here is how to modify this tempalate to have a banner or adsense at the top of the content area.
First add the following line of code to the HTML template. (note this is for Joomla 1.5)
<?php if ($this->countModules(‘new’)) : ?>
<div>
<jdoc:include type=”modules” name=”new” style=”xhtml” />
</div>
<?php endif; ?>
Then insert it in your template where I put it in the example below… Note that you should replace the word NEW with whatever you want to call this new module position.
<!– BEGIN: CONTENT –>
<div id=”ja-contentwrap” class=”clearfix”>
<div id=”ja-content”>
<div class=”innerpad”>
<?php if(!$tmpTools->isFrontPage()){ ?>
<div id=”ja-pathway”>
<?php if ($this->countModules(‘new’)) : ?>
<div>
<jdoc:include type=”modules” name=”new” style=”xhtml” />
</div>
<?php endif; ?>
<jdoc:include type=”module” name=”breadcrumbs” />
</div>
<?php } ?>
<jdoc:include type=”component” />
</div>
THEN
Then Go to the Banner Component and create a new category for this new ad position.
Go and create a COPOY of your Banner module and ASSIGN it to your NEW “module position”
and choose the correct banner Category on the right side of the Module screen.
That’s it for Joomla 1.5