How to center top Menu bar [closed]

You’ll need to add this rule to your CSS somewhere.

This positions the menu list 50% from the left, then translate the X 50% in the opposite direction.

.menu > ul.sf-js-enabled {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
}

More info