How to add Button under Logo on Mobile Header

To make Header button appears under Logo on Mobile Header, you can use this to Website Tools Custom CSS.

@media screen and (max-width:767px) {
  .header-actions-action.header-actions-action--cta {
    display: flex;
}
.header-display-mobile {
    flex-direction: column;
}
}

Result

If you want to make burger appears on right of Header, use this extra CSS.

div.header-display-mobile .header-burger {
    position: absolute;
    right: 1vw;
}

Result

If you have any problems, you can comment, send me an message or email me.