As a fledgling coder, I'm working on developing a website for my favorite beach. However, I've run into an issue when attempting to modify the text color on the Navbar - the changes don't seem to take effect.
I've experimented with altering the identifiers and testing out different formats to troubleshoot the problem.
Here's a snippet of the HTML where I'm encountering the problem:
<ul class="nav navbar-nav">
<li class="active" class="colorMe"><a href="aboutUs.html">About Us</a></li>
<li><a href="members-login.html" class="colorMe">Members</a></li>
<li><a href= "lifeguard-login.html" class= "colorMe">Lifeguards</a></li>
</ul>
(Just as a note, 'members-login' is a password-protected page.) Here's the CSS script corresponding to the mentioned HTML:
.colorMe{
color:darkgreen;
}
Despite my efforts, when previewing the website using Brackets software, the text color stubbornly remains unchanged. Any help would be greatly appreciated!