> From: Lyn Patterson
> I have navigational links in the css with a:hover etc etc for those
> links that appear in the navigation lists. How do I style individual
> links amongst text such as
>
> <p>Please visit our<a href="events.html"> EVENTS</a> page for
> details of
> ...</p>
>
> so that they match the colours I have used for the
> navigational links.
If you provided the URL (or at least your current style rules), it would
make it a lot easier to reply.
In general, you'd do it exactly the same way. A general a:hover rule will
apply to every link in your document, unless it's overridden by a more
specific (or !important) rule. From the little amount of information you
provided, I can only assume that you have something like
#navigation a:hover { ... }
in your CSS. Change it to just
a:hover { ... }
and see what happens.
Patrick
________________________________
Patrick H. Lauke
Webmaster / University of Salford
http://www.salford.ac.uk
******************************************************
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************