View Single Post
04-22-2008, 06:32 PM
#2
Morgan is offline Morgan
Status: Junior Member
Join date: Jan 2008
Location: Summit, New Jersey.
Expertise:
Software:
 
Posts: 86
iTrader: 0 / 0%
 

Morgan is on a distinguished road

Send a message via AIM to Morgan Send a message via MSN to Morgan Send a message via Yahoo to Morgan

  Old

.Cyanide,

There's multiple ways to attain a multiple link style scheme.

A most common usage is IDs or classes.

For an example, we'll use IDs.

Code:
#navigation a:link, a:visited, a:active {
color: #000000;
text-decoration: none;
}
#navigation a:hover {
color: #000000;
text-decoration: underline;
}

#content a:link, a:visited, a:active {
color: #FFFFFF;
text-decoration: none;
}
#content a:hover {
color: #FFFFFF;
text-decoration: underline;
}
From there, within your wrapper, id="navigation" or id="content".

I hope this helps.