why don't you modify variables.less and recompile less files into css? // Navbar // ------------------------- @navbarCollapseWidth: 979px; @navbarCollapseDesktopWidth: @navbarCollapseWidth + 1;
@navbarHeight: 40px; @navbarBackgroundHighlight: #ffffff; @navbarBackground: darken(@navbarBackgroundHighlight, 5%); @navbarBorder: darken(@navbarBackground, 12%); @navbarText: #777; @navbarLinkColor: #777; @navbarLinkColorHover: @grayDark; @navbarLinkColorActive: @gray; @navbarLinkBackgroundHover: transparent; @navbarLinkBackgroundActive: darken(@navbarBackground, 5%); @navbarBrandColor: @navbarLinkColor; // Inverted navbar @navbarInverseBackground: #111111; @navbarInverseBackgroundHighlight: #222222; @navbarInverseBorder: #252525; @navbarInverseText: @grayLight; @navbarInverseLinkColor: @grayLight; @navbarInverseLinkColorHover: @white; @navbarInverseLinkColorActive: @navbarInverseLinkColorHover; @navbarInverseLinkBackgroundHover: transparent; @navbarInverseLinkBackgroundActive: @navbarInverseBackground; @navbarInverseSearchBackground: lighten(@navbarInverseBackground, 25%); @navbarInverseSearchBackgroundFocus: @white; @navbarInverseSearchBorder: @navbarInverseBackground; @navbarInverseSearchPlaceholderColor: #ccc; @navbarInverseBrandColor: @navbarInverseLinkColor; - Nasir On Sun, Nov 18, 2012 at 3:15 PM, Adam Powell <[email protected]> wrote: > Or, open a page in a browser, open the "inspect" panel (right click) > scroll through the elements until the one you need is highlighted then look > at what properties affect it, you can even do live edits changing things, > turning them on an off, etc. > > I just found an extension that lat's me save the CSS from those live edits > but usually I would just jot down the changes on a piece of paper...won't > help with pseudo-elements though (like :hover) but it will let you figure > out exactly which CSS (and therefore LESS) properties to alter, > > > On Saturday, November 17, 2012 10:37:49 PM UTC-6, William Rouse wrote: >> >> I need to change the color of the Nav-bar, hover color of the links and >> finally the default size of the text of the links. Can you point me to a >> tutorial to make those changes, and if not a collection of the selectors in >> the CSS file to adjust. >> Thanks >> >
