how do i center my WordPress site's navigation bar?

navigation seems to be over to the left. how do i center it?

sixfiguresingles.net/

You can center navigation bar for Unite WordPress theme by adding this simple code to the same Custom CSS field that I mentioned on your other threads. You can find in on Appearance >> Theme Options >> Other >> Custom CSS.

@media (min-width: 768px) {
  .navbar-nav {
    float: none;
    padding: auto;
  }
  .nav {
    padding-left: 10%;
  }
}

Let me know if there is anything else

perfecto! Thank you!!

Hi, i’m not a pro in CSS and HTML and i would like to center my nav bar and don’t want it to be linked to header (which is the case RN)

i’m greatfull for any further help. thanks by advance

the site : http://www.cac-panazol.com/

Hey @warziget,

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

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*center menu*/
ul#menu-menucac {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

Best regards,
Support.