Hi Alan,
I just checked your site but did not see that top section as your screenshot so I added it for you with these steps:
1-Create module position: you already created 'top' position in templateDetails.xml file in template
2-Create block: this block will load the module position you want (here is 'top' position created in step 1)
I created a new block in: /templates/ja_social_ii/tpls/blocks/top.php
here is code of this block file:
<?php
/*
* ------------------------------------------------------------------------
* JA Social II template
* ------------------------------------------------------------------------
* Copyright (C) 2004-2018 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
* @license - Copyrighted Commercial Software
* Author: J.O.O.M Solutions Co., Ltd
* Websites: http://www.joomlart.com - http://www.joomlancers.com
* This file may not be redistributed in whole or significant part.
* ------------------------------------------------------------------------
*/
defined('_JEXEC') or die;
?>
<?php if ($this->countModules('top')) : ?>
<!-- TOP -->
<div class="wrap t3-top <?php $this->_c('top') ?>">
<jdoc:include type="modules" name="<?php $this->_p('top') ?>" />
</div>
<!-- //TOP -->
<?php endif ?>
3-Now, simply load that block into the layout you're using, 'features-intro' layout in this case
Go to file: /templates/ja_social_ii/tpls/features-intro.php
Add this line of code:
<?php $this->loadBlock('top') ?>
You can see this block appears in the layout now:
You now have that 'top' position, you can assign your desired module to this position.