how can I edit bootsrap style like body background color?
I dont want to do this all the time:
body { background: #539754 !important; }
I want to set font color in navbar but i cannot do that. I am preety confused about where the styles are coming from
.navbar-default .navbar-nav > li > a {
color: #000;
font-size: 20px;
font-family: cursive;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
color: #333;
background-color: transparent;
}
I did this inside bootstrap.css but Nothing happened. when pressing F12 edit it there in file /dist/css/bootstrap.css - I dont even have that folder. I understand its created dynamickly but how can I edit it?