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