试图居中顶部导航栏

Trying to Center Top Navigation Bar

调整以下 bigcommerce 主题:https://cornerstone-light-demo.mybigcommerce.com 我似乎无法让顶部导航 (nav.navuser) 居中对齐。我已经尝试了 text-align:center; 和 margin:0 auto; 的各种组合;无济于事。

尝试以下更改:

.navUser-section.navUser-section--alt {
    /* add the following rule */
    display: inline-block;
}

.navUser-section--alt {
   /* change float:right to float: none */
    float: none;
}

.navUser{
    /* add the following rule */
    text-align:center;
}