Hi abac1,
You can go to the Backend > Site Template Styles > Ja tour - default > Layout settings > Header Block and override with the following code:
<!-- HEADER BLOCK -->
<header id="t4-header-wrap" class="t4-header">
<div class="container-hd">
<div class="row no-gutters d-flex flex-nowrap t4-header-inner">
<div class="d-none d-xl-flex head-info-wrap col-hd-2">
<div class="head-info">
<jdoc:include type="modules" name="head-info" />
</div>
</div>
<div class="mainnav-wrap d-flex col-12 col-lg-10 col-hd-8">
<div class="logo-wrap">
<jdoc:include type="element" name="logo" />
</div>
<div class="menu-wrap d-flex align-items-center">
<jdoc:include type="element" name="megamenu" />
<jdoc:include type="element" name="offcanvas-toggle" />
</div>
</div>
<div class="d-none d-lg-block col-2 col-hd-2 text-right">
<div class="head-action">
<jdoc:include type="modules" name="head-action" />
</div>
</div>
</div>
</div>
</header>
<!-- // HEADER BLOCK -->
Then go to the \templates\ja_tour\js\template.js file. Line 3
Replace this line with the following code:
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();
}
}
Hope this help!