Change navbar text color Bootstrap

前端 未结 12 1576
北恋
北恋 2020-12-13 19:53

I currently have this piece of html which represents the relevant part of my navbar:

12条回答
  •  暖寄归人
    2020-12-13 20:20

    The thread you linked to does answer the question for you. You need to target the a elements themselves. E.g.

    .nav.navbar-nav.navbar-right a {
        color: blue;
    }
    

    If that doesn't work, it just needs to be more specific. E.g.

    .nav.navbar-nav.navbar-right li a {
        color: blue;
    }
    

提交回复
热议问题