How do you center the menu

Please see this reference thread, as if followed it creates new issues with the mobile menu dropdown.

https://colorlibsupport.com/t/how-do-you-actually-center-your-sites-menu/#post-61215

Hi @chatmatt,

I hope you are well today and thank you for your question.

Please try using the below CSS code instead to resolve the issue.

@media (min-width: 767px){

.navbar-default .nav-search {
    display: none;
}
.navbar-default div.navbar-collapse {
    display: table !important;
    margin: 0 auto;
    float: none;
}
}

Best Regards,
Movin