EIF
Try to edit the header block on your site in Extensions > Templates > JA Resort > Layouts Settings : https://prnt.sc/twwfme
With this code:
<!-- HEADER BLOCK -->
<header id="t4-header-wrap" class="t4-header">
<div class="t4-header-inner">
<div class="row no-gutters d-flex justify-content-between flex-nowrap">
<div class="d-none d-hd-block col-hd-3">
<div class="head-info">
<jdoc:include type="modules" name="head-info" />
</div>
</div>
<div class="col-xl-9 col-hd-6">
<div class="mainnav-wrap d-flex justify-content-between">
<div class="menu-wrap">
<jdoc:include type="element" name="megamenu" />
<jdoc:include type="element" name="offcanvas-toggle" />
</div>
<div class="logo-wrap">
<jdoc:include type="element" name="logo" />
</div>
</div>
</div>
<div class="d-none d-lg-block col-lg-2 col-hd-3">
<div class="head-action">
<jdoc:include type="modules" name="head-action" />
</div>
</div>
</div>
</div>
</header>
<!-- // HEADER BLOCK -->
And in the file: templates/ja_resort/js/template.js
Remove or comment from line 65 to 72:
if($('#t4-megamenu-mainmenu').length > 0) {
if($(window).width() > 1600) {
var numChild = Math.ceil($('#t4-megamenu-mainmenu .nav > li').size() / 2);
$('#t4-megamenu-mainmenu > .nav > li').eq(numChild - 1).after($('.logo-wrap a'));
$('.logo-wrap').hide();
}
}