Overriding navbar styles in less file of bootstrap -
i customize bootstrap styles using less files. here want override navbar styles. doing... (in custom-bootstrap.less file)
@import "../bootstrap/less/bootstrap.less"; @import "../bootstrap/less/responsive.less"; @import "custom-variables.less"; .navbar{ .navbar-inner{ background:none; background-color: @navbgcolor; border-bottom: darken(@navbgcolor, 15%); } }
i have tried different styles in .navbar-inner nothing happening there.
what's wrong code?
Comments
Post a Comment