Hi,
My hyperlinked text appears in orange across my site. However, at
this place [Links visible only for registered users]on my site, where the background is blue, I'm finding it hard to see the orange text. How can I make ONLY these two words of hyperlinked text white (and very light grey on hover)?
Comments
Use this css, use any color you want.
#who-are-we a {
color:red !important;
}
#who-are-we a:hover {
color:gray !important;
}