Why is my bootstrap navbar not displaying inline?

后端 未结 11 2222
感情败类
感情败类 2021-01-01 20:46

Here is my html using bootstrap (I\'m sure bootstrap is installed correctly)

11条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-01 21:30

    I'm not saying the other answers are incorrect in any way, but all that is really needed to accomplish the original question is this entry in the subtheme's CSS file:

    .nav.navbar-nav li {
        float: left;
    }
    

    It should be noted that the class(s) before the li will vary depending on selections in the Appearance section of the theme and other factors. For example, right out of the box the class would have been .menu.nav li

提交回复
热议问题