Hi @tennis2table,
Try open file templatesja_elasticablocksheader.php then look for this code :
<ul class="no-display">
<li><a href="<?php echo $this->getCurrentURL();?>#ja-content" title="<?php echo JText::_("SKIP_TO_CONTENT");?>"><?php echo JText::_("SKIP_TO_CONTENT");?></a></li>
</ul>
add new position above it as below :
<?php if($this->countModules('header-top')) : ?>
<div id="header-top" style="clear: both;">
<jdoc:include type="modules" name="header-top" />
</div>
<?php endif; ?>
<ul class="no-display">
<li><a href="<?php echo $this->getCurrentURL();?>#ja-content" title="<?php echo JText::_("SKIP_TO_CONTENT");?>"><?php echo JText::_("SKIP_TO_CONTENT");?></a></li>
</ul>
Next, open file templatesja_elasticatemplateDetails.xml and look for this code :
<position>top-panel</position>
add new position right below it :
<position>top-panel</position>
<position>header-top</position>