Just like it says, the color property is not changing the color of the text.
The HTML:
<body>
<header>
<ul id="navbar">
<li><a href="/home.html">Home</a></li>
<li><a href="/money.html">Money</a></li>
<li><a href="/sports.html">Sports</a></li>
</ul>
</header>
</body>
and the CSS:
#navbar {
list-style-type: none;
}
#navbar li {
background-image: url(../images/bg-nav.c.gif);
background-position: left top;
color: white;
float: left;
font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
height: 37px;
text-align: center;
text-decoration: none;
width: 120px;
}
