Editing navbar text color in twitter bootstrap

2019-06-05 16:11发布

I'm trying to edit the font color of the elements I have in a navabar.I don't want to edit the html font color directly. I want to do it in css. Is this possible? Can i extend the bootstrap class to override the font color they use with my own?

thanks

1条回答
对你真心纯属浪费
2楼-- · 2019-06-05 16:39

Yes you can change the color. Try to use the @less or $sass variables to do so:

Example using less variables:

/
/ Navbar
// -------------------------

@navbarText: #7490BC;
@navbarLinkColor: #FFFFFF;
@navbarLinkColorHover: @white;
@navbarLinkColorActive: @navbarLinkColorHover;
@navbarLinkBackgroundHover: transparent;
@navbarLinkBackgroundActive: @navbarBackground;

@navbarSearchPlaceholderColor: #ccc;
@navbarBrandColor: @navbarLinkColor; 
查看更多
登录 后发表回答