Hyperlink colors

  • Thread starter Thread starter Vicki
  • Start date Start date
V

Vicki

I am using FP2002 and want to have the hyperlink color
different for different links on the same page. The
links on my navagation bar are on a burgundy background
so the standard royal blue doesn't contrast well. What
is the easist way to have the color unique to a specific
hyperlink?

Thanks.
 
Create a pseudo style in the head section for the links you want different
<style type="text/css">
a.white {color: white; text-decoration: none}
a.white:link {color: white; text-decoration: none}
a.white:visited {color: white; text-decoration: none}
a.white:hover {color: white; text-decoration: underline}
a.white:active {color: white; text-decoration: none}
</style>

And apply the class to the links in your page
<a href="yourlink.htm" class="white">

PS
use it for your normal links (since you can't easily edit nav bar links to add a class)

--



| I am using FP2002 and want to have the hyperlink color
| different for different links on the same page. The
| links on my navagation bar are on a burgundy background
| so the standard royal blue doesn't contrast well. What
| is the easist way to have the color unique to a specific
| hyperlink?
|
| Thanks.
 
Back
Top