1

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

user1395155
  • 53
  • 1
  • 4

1 Answers1

1

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; 
casperOne
  • 73,706
  • 19
  • 184
  • 253
HaNdTriX
  • 28,732
  • 11
  • 78
  • 85