HTML
<span class = "Box">
<div class = "active">
<a href ="#-night">
<span class ="list">4</span>
<span class="locations"><?php echo $location; ?></span>
<span class="type">Night </span>
</a>
</div>
</span>
CSS
.Box {
white-space: nowrap;
padding: 0px 20px;
font-size: 110%;
color: blue;}
.list {
height: 30px;
width: 30px;
line-height: 30px;
-moz-border-radius: 15px; /* or 50% */
border-radius: 15px; /* or 50% */
text-align: center;
display: inline-block;
background-color: orange;
color: blue;}
.locations{
text-transform: uppercase;
color: blue;}
.type {
text-transform: uppercase;
color: blue;}
I need the font color of .list, .locations, and .type in the .active span to change to dark blue or another color. I'm not very skilled at CSS and have found no helpful information online so far. Sorry if this question is silly or if I've posted it incorrectly.