尝试居中顶部导航栏

时间:2017-04-25 17:31:17

标签: html css responsive-design responsive bigcommerce

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

1 个答案:

答案 0 :(得分:1)

尝试以下更改:

.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;
}