Hello,
I use this code to center the menu options in desktop.
@media(min-width: 900px) {
.nav-align-center .inside-navigation {
max-width: 1200px;
margin: auto;
}
.main-nav {
flex: 1;
}
.main-navigation li:first-child {}
.main-navigation li:first-child {
margin-left: auto;
}
.main-navigation li:last-child {
margin-right: auto;
}
}
.main-navigation, .main-navigation ul ul {
padding-top: 5px;
padding-bottom: 5px;
}
But I only want certain menu items to be centered. Is it possible? If yes, how do I make it happen? 🙂
Is it also possible to place the search icon wherever I want in the menu? Now it goes under the hamburger icon. See picture.
https://ibb.co/RPB8gBM
Thanks in advance!