antoinezelf Hi
You can create a new position and load it into the layout you're using, here are steps:
1/ Create a new module position: go to file: /templates/ja_company/templateDetails.xml
and add new position you want inside <position> tag:
2/ Load new position into layout.
Depend on the layout you're using the main body section with: no sidebar / 1 sidebar (left/right) / 2 sidebars ... and you will edit the associated layout file in this folder: /templates/ja_company/tpls/blocks/mainbody/
Let me take an example that you're using layout with 1 sidebar on the right, you will need to edit file: one-sidebar-right.php
add this code above the component block:
<?php if ($this->countModules('newposition')) : ?>
<!-- newposition -->
<div class="wrap t3-newposition <?php $this->_c('newposition') ?>">
<jdoc:include type="modules" name="<?php $this->_p('newposition') ?>" />
</div>
<!-- //newposition -->
<?php endif ?>
3/ Assign the module you wish to this new position.