Go to Design > Custom CSS > Paste the following code
/* Show button on mobile menu*/
@media screen and (max-width:1024px) {
/* show button */
.header-actions {
display: block !important;
}
.header .header-actions-action--cta {
display: block;
width: 10% !important;
}
/* logo width */
.header-title-nav-wrapper {
flex: 50% !important;
}
}
Hello,
How I can make them in this order:
Burger-menu, Logo, button?
Thank you