Why isn't the text color of my list changing? I've assigned a class nav
to the links and tried styling it with CSS, but for some reason, it's not working.
HTML:
<ul>
<li><a href="####" class="nav">info</a></li>
<li><a href="###" class="nav">facebook</a></li>
</ul>
CSS:
ul {
padding-top: 6%;
right: 9%;
position: absolute;
cursor: pointer;
list-style: none;
}
a .nav {
font-family: 'Inconsolata', Arial, Helvetica, sans-serif;
font-size: 10pt;
letter-spacing: 0px;
font-weight: 100;
color: #1B1B1B !important;
}