Please follow my guide below
Open templates/ja_events/blocks/header.php file
from
<?php if($this->countModules('topheader')) : ?>
<div id="ja-topheader">
<jdoc:include type="modules" name="topheader" />
</div>
<?php endif; ?>
change to
<?php if($this->countModules('new_position')) : ?>
<div id="ja-new_position">
<jdoc:include type="modules" name="new_position" />
</div>
<?php endif; ?>
<?php if($this->countModules('topheader')) : ?>
<div id="ja-topheader">
<jdoc:include type="modules" name="topheader" />
</div>
<?php endif; ?>
And continue to open templates/ja_events/css/template.css file
add new script below
#ja-new_position {
bottom: 45px;
left: 420px;
position: absolute;
}