|
WDF Staff
Join Date: April 2004
Location: Cottage Grove, Minnesota
Posts: 3,401
|
Here is what you'll have to do ...
In your "wack.css" file, change this:
a {
text-decoration: none;
color: #900
}
a:hover {
color: #592D00;
}
to this:
a.nav:link,a.nav:active,a.nav:visited {
background-color: transparent;
font-family: "Century Gothic", "Century Schoolbook", Century, sans-serif, serif;
color:#900;
font-weight:bold;
font-size:11px;
text-decoration: none;
}
a.nav:hover {
background-color: transparent;
font-family: "Century Gothic", "Century Schoolbook", Century, sans-serif, serif;
color: #592D00;
font-weight:bold;
font-size:11px;
text-decoration: none;
}
Then ....
For ALL of your links, you have to specify the "nav" class ....
<li><a href="hair.html" class="nav">hair</a></li>
The result is that nothing can over-rule your class, so your links will stay the way you want.
.
|