Help needed with changing the color of dropdown items in my code:
I am looking to change the color of Dr. Winthrop, Dr. Chase, and Dr. Sanders.
Below is the HTML/Bootstrap code snippet:
<li class="dropdown"><a href="#" data-toggle="dropdown"> About <span class="caret"></span> </a>
<ul class="dropdown-menu">
<li><a href="#">Dr. Winthrop</a></li>
<li><a href="#">Dr. Chase</a></li>
<li><a href="#">Dr. Sanders</a></li>
</ul>
</li>
I have attempted the following code but it does not seem to be working:
ul.dropdown-menu li {
color: red;
}