Hi @venepress-web,
To make the Navigation Menu Center please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.
@media (min-width: 992px) {
.navbar-main .container {
padding-left: 85px;
}
.main-navigation {
width: 100%;
}
.main-navigation .navbar-nav {
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-pack: center;
justify-content: center;
}
.main-navigation li {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
float: none;
}
.navbar-nav.d-lg-block {
display: flex !important;
}
}
Thanks