Hi webmonfo
You can add a new position/block just above the navhelper block as section-2
To add it edit this file templates/ja_healthcare/tpls/default.php and change from :
<?php $this->loadBlock('top-bar') ?>
<?php $this->loadBlock('header') ?>
<?php $this->loadBlock('mainnav') ?>
<?php $this->loadBlock('slideshow') ?>
<?php $this->loadBlock('spotlight-1') ?>
<?php $this->loadBlock('masthead') ?>
<?php $this->loadBlock('section') ?>
<?php $this->loadBlock('mainbody') ?>
<?php $this->loadBlock('navhelper') ?>
<?php $this->loadBlock('footer') ?>
TO :
<?php $this->loadBlock('top-bar') ?>
<?php $this->loadBlock('header') ?>
<?php $this->loadBlock('mainnav') ?>
<?php $this->loadBlock('slideshow') ?>
<?php $this->loadBlock('spotlight-1') ?>
<?php $this->loadBlock('masthead') ?>
<?php $this->loadBlock('section') ?>
<?php $this->loadBlock('mainbody') ?>
<?php $this->loadBlock('section-2') ?>
<?php $this->loadBlock('navhelper') ?>
<?php $this->loadBlock('footer') ?>
Save file
Then duplicate this file /templates/ja_healthcare/tpls/blocks/section.php and rename duplicated as section-2.php
Edit section-2.php in as showed below
From :
defined('_JEXEC') or die;
?>
<?php if ($this->countModules('section')) : ?>
<!-- SECTION -->
<div class="section-wrap">
<jdoc:include type="modules" name="<?php $this->_p('section') ?>" />
</div>
<!-- //SECTION -->
<?php endif ?>
TO :
defined('_JEXEC') or die;
?>
<?php if ($this->countModules('section-2')) : ?>
<!-- SECTION -->
<div class="section-wrap">
<jdoc:include type="modules" name="<?php $this->_p('section-2') ?>" />
</div>
<!-- //SECTION -->
<?php endif ?>
Then edit this file /templates/ja_healthcare//templateDetails.xml and add new position in <position> section
<position>section-2</position>
Hope it helps
Regards