QUOTE(Mila @ 21 May, 2007 - 09:36 AM)

I know the basics for changing links (ie: a:hover {color:#000000; text-decoration:underline;} etc), but what I want to know is if there is a way to change the links within a certain section of a document using css. Like having all of the links in my menu look a certain way, but look a different way on the rest of the page. Can I do this in CSS?
Mila
Have you tried declaring a class for each of the different types of links?
For example for the menu you could declare:
CODE
a.menu:hover {color:#000000; text-decoration:underline;}
and for default links:
CODE
a:hover {color:#000000; text-decoration:underline;}
specify the class in the HTML with
CODE
<a href="foo.html" class="menu">a menu link</a>
or don't include a class attribute to use the default style.