Hello I'm a newcomer and I want to change the color of the font inside the navbar but cant find any solution, here is the code:
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">testteee</a>
</div>
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="#">About</a></li>
<li><a href="#">Portofolio</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</nav>
<main>
<header>
<p>teste</p>
</header>
</main>
CSS:
body {
background-color: grey;
}
.navbar {
background-color: purple;
border: transparent;
box-shadow: 0px 0px 0px 2px grey;
margin: 0;
}
main {
width: 60%;
background-color: white;
margin: 0 auto;
box-shadow: 0.5px 0.5px 0.5px 0.5px grey;
}
Any additional tips would be great for my development :)