Hello!
I don’t quite understand what you mean by:
logo between the menu
But here’s the code that will center the logo and menu:
@media (min-width: 768px) {
.navbar-wrapper .navbar-brand {
float: none;
text-align: center;
}
body:not(.menu-sandwich) .navbar-header {
max-width: 100%;
float: none;
}
}
In case you want to center also on mobile devices use this:
.navbar-wrapper .navbar-brand {
float: none;
text-align: center;
width: 100%;
}
body:not(.menu-sandwich) .navbar-header {
max-width: 100%;
float: none;
text-align: center;
}
.navbar-wrapper .navbar-toggle {
float:none;
margin: 0;
}
Please let us know how it worked out for you.