cyskye Hi
It depends on which header block in the layout of template you're using.
For example, if you're using header-1, you open this file:
root/templates/ja_blockk/html/layouts/t4/block/header-1.html
and move this line of code:
<jdoc:include type="element" name="offcanvas-toggle" />
to underneath the code of head-search part, like this:
<!-- HEADER BLOCK -->
<header id="t4-header-wrap" class="t4-header header-layout-1">
<div class="t4-header-inner">
<div class="container">
<div class="row no-gutters d-flex align-items-center flex-nowrap">
<div class="col-5 col-lg-2 t4-logo-header d-flex align-items-center">
<jdoc:include type="element" name="logo" />
</div>
<div class="col-2 col-lg-8 t4-megamenu-wrap d-lg-flex justify-content-center col-xl-8">
<div class="t4-navbar">
<jdoc:include type="element" name="megamenu" />
</div>
</div>
<div class="col-5 col-lg-2 t4-header-right d-flex justify-content-end align-items-center">
<jdoc:include type="element" name="theme-toggle" />
<jdoc:include type="element" name="megamenu-toggle" />
<div class="head-search">
<jdoc:include type="modules" name="head-search" />
</div>
<jdoc:include type="element" name="offcanvas-toggle" />
</div>
</div>
</div>
</div>
</header>
<!-- // HEADER BLOCK -->