Hi there!
The position of your menu will depend on the size of the screen of the viewer. On smaller screens it will be closer to the left, however, on bigger screens, space will be added on the left and so the menu will be closer to the middle.
You may modify this adding some custom CSS:
/*Centering the menu*/
@media screen and (min-width: 60em) {
.has-top-content .main-navigation ul.nav-menu {
text-align: center;
}
}
It worked! Thank you so much! I appreciate the help.
Yay, I’m glad to hear that! 🙂