Hi there,
Remove this CSS you’ve added:
.site-logo.mobile-header-logo {
margin-left: 0 !important;
}
#mobile-header button.menu-toggle {
position: absolute;
left: 1px;
}
#mobile-header .mobile-bar-items {
margin-left: auto;
}
and try this instead:
.navigation-branding, .site-logo.mobile-header-logo {
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
order: 2;
margin-right: auto;
margin-left: auto;
}
.main-navigation .mobile-bar-items {
-webkit-box-ordinal-group: 0;
-ms-flex-order: -1;
order: -1;
}