Buy me a coffee

Header Layout: same logo & button above nav menu with a dividing line in between

To achieve a header layout like this.

Header Layout Same Logo & Button Above Nav Menu With A Dividing Line In Between 01 Min

You can use this code to Custom CSS

/* Header layout */
.header-nav {
    width: 100% !important;
    padding-left: 0 !important;
    border-top: 1px solid black;
    padding-top: 10px;
    margin-top: 10px;
}
.header-display-desktop {
    flex-wrap: wrap;
}
nav.header-nav-list {
    width: 100% !important;
    justify-content: flex-start !important;
}

Header Layout Same Logo & Button Above Nav Menu With A Dividing Line In Between 02 Min

and use this code to Website Tools > Code Injection > Footer.

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
  jQuery(document).ready(function($){
  $('.header-display-desktop .header-nav').appendTo('.header-display-desktop');
})
</script>

Header Layout Same Logo & Button Above Nav Menu With A Dividing Line In Between 03 Min